In [1]:
from __future__ import absolute_import, division, print_function, unicode_literals
from hydroffice.ssp.cast_reader import CastReader
from hydroffice.ssp.ssp_dicts import Dicts
In [2]:
import logging
logger = logging.getLogger()
logger.setLevel(logging.NOTSET)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG) # change to WARNING to reduce verbosity, DEBUG for high verbosity
ch_formatter = logging.Formatter('%(levelname)-9s %(name)s.%(funcName)s:%(lineno)d > %(message)s')
ch.setFormatter(ch_formatter)
logger.addHandler(ch)
In [3]:
rdr = CastReader()
rdr.test_drivers()
print("\ntotal casts: %s" % rdr.total_read_casts())
print("successfully read: %s" % rdr.good_count)
print("failures: %s" % rdr.fail_count)
print(rdr.casts)
DEBUG:hydroffice.ssp.cast_reader:testing DIGIBAR_S (csv)
DEBUG hydroffice.ssp.cast_reader.test_drivers:78 > testing DIGIBAR_S (csv)
DEBUG:hydroffice.ssp.cast_reader:reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s
DEBUG hydroffice.ssp.cast_reader.test_drivers:89 > reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s file in the data folder: 3
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s file in the data folder: 3
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast1.csv [4]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast1.csv [4]
INFO:hydroffice.ssp.drivers.digibar:reading ...
INFO hydroffice.ssp.drivers.digibar.__init__:135 > reading ...
INFO:hydroffice.ssp.drivers.digibar:reading > header
INFO hydroffice.ssp.drivers.digibar._read_header:142 > reading > header
INFO:hydroffice.ssp.drivers.digibar:probe type: 2
INFO hydroffice.ssp.drivers.digibar._read_header:145 > probe type: 2
INFO:hydroffice.ssp.drivers.digibar:sensor type: 2
INFO hydroffice.ssp.drivers.digibar._read_header:147 > sensor type: 2
INFO:hydroffice.ssp.drivers.digibar:max number of samples: 63
INFO hydroffice.ssp.drivers.digibar._read_header:150 > max number of samples: 63
INFO:hydroffice.ssp.drivers.digibar:reading > body
INFO hydroffice.ssp.drivers.digibar._read_body:157 > reading > body
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:31 1503.5 0.8 16.4 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:31 1503.5 0.8 16.4 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:31 1503.4 1.3 16.4 4.09
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:31 1503.4 1.3 16.4 4.09
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:32 1503.3 1.8 16.4 4.05
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:32 1503.3 1.8 16.4 4.05
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:32 1503.3 2.3 16.4 4.05
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:32 1503.3 2.3 16.4 4.05
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:32 1503.0 2.8 16.4 4.08
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:32 1503.0 2.8 16.4 4.08
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:33 1503.0 3.3 16.4 4.05
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:33 1503.0 3.3 16.4 4.05
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:33 1502.9 3.8 16.4 4.03
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:33 1502.9 3.8 16.4 4.03
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:33 1502.9 4.3 16.4 4.05
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:33 1502.9 4.3 16.4 4.05
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:33 1502.9 4.8 16.3 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:33 1502.9 4.8 16.3 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:34 1502.8 5.3 16.3 4.05
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:34 1502.8 5.3 16.3 4.05
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:34 1502.5 5.8 16.3 4.03
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:34 1502.5 5.8 16.3 4.03
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:35 1502.5 6.3 16.3 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:35 1502.5 6.3 16.3 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:36 1502.5 6.8 16.3 4.09
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:36 1502.5 6.8 16.3 4.09
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:36 1502.5 7.3 16.2 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:36 1502.5 7.3 16.2 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:37 1502.6 7.8 16.2 4.08
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:37 1502.6 7.8 16.2 4.08
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:37 1502.7 8.3 16.2 4.07
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:37 1502.7 8.3 16.2 4.07
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:38 1502.6 8.8 16.2 4.07
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:38 1502.6 8.8 16.2 4.07
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:38 1502.6 9.3 16.1 4.05
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:38 1502.6 9.3 16.1 4.05
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:39 1502.5 9.8 16.1 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:39 1502.5 9.8 16.1 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:39 1502.0 10.3 16.1 4.05
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:39 1502.0 10.3 16.1 4.05
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:40 1501.8 10.8 16.1 4.09
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:40 1501.8 10.8 16.1 4.09
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:40 1501.7 11.3 16.1 4.04
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:40 1501.7 11.3 16.1 4.04
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:40 1501.7 11.8 16.1 4.09
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:40 1501.7 11.8 16.1 4.09
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:41 1501.7 12.3 16.0 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:41 1501.7 12.3 16.0 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:41 1501.7 12.8 16.0 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:41 1501.7 12.8 16.0 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:42 1501.3 13.3 15.9 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:42 1501.3 13.3 15.9 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:43 1501.4 13.8 15.9 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:43 1501.4 13.8 15.9 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:43 1501.3 14.3 15.9 4.07
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:43 1501.3 14.3 15.9 4.07
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:43 1501.3 14.8 15.9 4.09
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:43 1501.3 14.8 15.9 4.09
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:44 1501.0 15.3 15.9 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:44 1501.0 15.3 15.9 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:44 1501.0 15.8 15.8 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:44 1501.0 15.8 15.8 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:45 1500.7 16.3 15.8 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:45 1500.7 16.3 15.8 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:45 1500.2 16.8 15.8 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:45 1500.2 16.8 15.8 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:46 1499.6 17.3 15.8 4.09
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:46 1499.6 17.3 15.8 4.09
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:46 1499.4 17.8 15.8 4.07
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:46 1499.4 17.8 15.8 4.07
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:47 1499.2 18.3 15.7 4.07
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:47 1499.2 18.3 15.7 4.07
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:47 1498.2 18.8 15.6 4.05
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:47 1498.2 18.8 15.6 4.05
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:48 1498.1 19.3 15.6 4.08
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:48 1498.1 19.3 15.6 4.08
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:49 1498.1 19.8 15.5 4.07
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:49 1498.1 19.8 15.5 4.07
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:50 1497.9 20.3 15.4 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:50 1497.9 20.3 15.4 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:51 1497.9 20.8 15.3 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:51 1497.9 20.8 15.3 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:51 1497.9 21.3 15.2 4.05
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:51 1497.9 21.3 15.2 4.05
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:52 1497.9 21.8 15.2 4.09
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:52 1497.9 21.8 15.2 4.09
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:52 1497.9 22.3 15.1 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:52 1497.9 22.3 15.1 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:53 1497.4 22.8 15.1 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:53 1497.4 22.8 15.1 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:53 1497.5 23.3 15.1 4.07
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:53 1497.5 23.3 15.1 4.07
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:54 1497.5 23.8 15.0 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:54 1497.5 23.8 15.0 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:54 1497.4 24.3 15.0 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:54 1497.4 24.3 15.0 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:55 1497.2 24.8 14.9 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:55 1497.2 24.8 14.9 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:56 1497.2 25.3 14.8 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:56 1497.2 25.3 14.8 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:56 1497.1 25.8 14.8 4.09
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:56 1497.1 25.8 14.8 4.09
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:57 1497.0 26.3 14.7 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:57 1497.0 26.3 14.7 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:58 1497.0 26.8 14.7 4.07
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:58 1497.0 26.8 14.7 4.07
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:58 1496.7 27.3 14.6 4.07
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:58 1496.7 27.3 14.6 4.07
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:57:59 1495.3 27.8 14.6 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:57:59 1495.3 27.8 14.6 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:58:0 1495.3 28.3 14.5 4.07
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:58:0 1495.3 28.3 14.5 4.07
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:58:1 1494.9 28.8 14.4 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:58:1 1494.9 28.8 14.4 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:58:2 1494.8 29.3 14.2 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:58:2 1494.8 29.3 14.2 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:58:2 1494.5 29.8 14.2 4.06
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:58:2 1494.5 29.8 14.2 4.06
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:58:3 1494.4 30.3 14.1 4.08
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:58:3 1494.4 30.3 14.1 4.08
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:58:4 1494.4 30.8 14.0 4.10
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:58:4 1494.4 30.8 14.0 4.10
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:58:4 1494.3 31.3 14.0 4.09
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:58:4 1494.3 31.3 14.0 4.09
INFO:hydroffice.ssp.drivers.digibar:7-30-13 8:58:5 1494.3 31.8 13.9 4.07
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 8:58:5 1494.3 31.8 13.9 4.07
INFO:hydroffice.ssp.drivers.digibar:total count: 63
INFO hydroffice.ssp.drivers.digibar._read_body:190 > total count: 63
INFO:hydroffice.ssp.drivers.digibar:original date/time: 7-30-13 8:57:31
INFO hydroffice.ssp.drivers.digibar._read_body:200 > original date/time: 7-30-13 8:57:31
INFO:hydroffice.ssp.drivers.digibar:converted date/time: 2013-07-30 08:57:31
INFO hydroffice.ssp.drivers.digibar._read_body:208 > converted date/time: 2013-07-30 08:57:31
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2013-07-30 08:57:31
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast1.csv
- Sensor Type: 2
- Probe Type: 2
- Driver: DGS.DIGIBAR_S.0.2.0
- Samples: 63
0.80 1503.50 16.40 0.00
1.30 1503.40 16.40 0.00
1.80 1503.30 16.38 0.00
2.30 1503.30 16.38 0.00
2.80 1503.00 16.38 0.00
.... .... .... .... ....
31.80 1494.30 13.93 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2013-07-30 08:57:31
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast1.csv
- Sensor Type: 2
- Probe Type: 2
- Driver: DGS.DIGIBAR_S.0.2.0
- Samples: 63
0.80 1503.50 16.40 0.00
1.30 1503.40 16.40 0.00
1.80 1503.30 16.38 0.00
2.30 1503.30 16.38 0.00
2.80 1503.00 16.38 0.00
.... .... .... .... ....
31.80 1494.30 13.93 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 63)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 63)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast2.csv [4]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast2.csv [4]
INFO:hydroffice.ssp.drivers.digibar:reading ...
INFO hydroffice.ssp.drivers.digibar.__init__:135 > reading ...
INFO:hydroffice.ssp.drivers.digibar:reading > header
INFO hydroffice.ssp.drivers.digibar._read_header:142 > reading > header
INFO:hydroffice.ssp.drivers.digibar:probe type: 2
INFO hydroffice.ssp.drivers.digibar._read_header:145 > probe type: 2
INFO:hydroffice.ssp.drivers.digibar:sensor type: 2
INFO hydroffice.ssp.drivers.digibar._read_header:147 > sensor type: 2
INFO:hydroffice.ssp.drivers.digibar:max number of samples: 48
INFO hydroffice.ssp.drivers.digibar._read_header:150 > max number of samples: 48
INFO:hydroffice.ssp.drivers.digibar:reading > body
INFO hydroffice.ssp.drivers.digibar._read_body:157 > reading > body
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:2 1504.3 0.9 16.4 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:2 1504.3 0.9 16.4 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:2 1504.2 1.4 16.4 4.22
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:2 1504.2 1.4 16.4 4.22
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:2 1504.0 1.9 16.4 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:2 1504.0 1.9 16.4 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:3 1503.7 2.4 16.4 4.24
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:3 1503.7 2.4 16.4 4.24
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:3 1503.4 2.9 16.4 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:3 1503.4 2.9 16.4 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:3 1503.3 3.4 16.4 4.19
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:3 1503.3 3.4 16.4 4.19
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:3 1502.9 3.9 16.4 4.24
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:3 1502.9 3.9 16.4 4.24
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:4 1502.7 4.4 16.4 4.24
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:4 1502.7 4.4 16.4 4.24
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:4 1502.5 4.9 16.4 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:4 1502.5 4.9 16.4 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:4 1502.4 5.4 16.3 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:4 1502.4 5.4 16.3 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:5 1502.2 5.9 16.3 4.17
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:5 1502.2 5.9 16.3 4.17
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:5 1502.1 6.4 16.3 4.19
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:5 1502.1 6.4 16.3 4.19
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:7 1501.7 6.9 16.1 4.22
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:7 1501.7 6.9 16.1 4.22
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:8 1501.6 7.4 16.1 4.19
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:8 1501.6 7.4 16.1 4.19
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:9 1501.5 7.9 16.0 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:9 1501.5 7.9 16.0 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:9 1501.0 8.4 16.0 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:9 1501.0 8.4 16.0 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:9 1500.7 8.9 16.0 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:9 1500.7 8.9 16.0 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:10 1500.2 9.4 16.0 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:10 1500.2 9.4 16.0 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:10 1500.1 9.9 15.9 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:10 1500.1 9.9 15.9 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:11 1500.1 10.4 15.9 4.19
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:11 1500.1 10.4 15.9 4.19
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:11 1499.7 10.9 15.9 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:11 1499.7 10.9 15.9 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:11 1499.4 11.4 15.8 4.17
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:11 1499.4 11.4 15.8 4.17
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:12 1499.2 11.9 15.8 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:12 1499.2 11.9 15.8 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:12 1499.0 12.4 15.8 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:12 1499.0 12.4 15.8 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:13 1499.0 12.9 15.7 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:13 1499.0 12.9 15.7 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:13 1499.0 13.4 15.7 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:13 1499.0 13.4 15.7 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:14 1498.9 13.9 15.6 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:14 1498.9 13.9 15.6 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:14 1499.0 14.4 15.6 4.24
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:14 1499.0 14.4 15.6 4.24
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:14 1498.9 14.9 15.6 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:14 1498.9 14.9 15.6 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:15 1499.0 15.4 15.5 4.19
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:15 1499.0 15.4 15.5 4.19
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:15 1499.0 15.9 15.4 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:15 1499.0 15.9 15.4 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:15 1499.0 16.4 15.4 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:15 1499.0 16.4 15.4 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:16 1499.0 16.9 15.4 4.19
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:16 1499.0 16.9 15.4 4.19
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:16 1498.6 17.4 15.3 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:16 1498.6 17.4 15.3 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:17 1498.6 17.9 15.3 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:17 1498.6 17.9 15.3 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:17 1498.5 18.4 15.2 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:17 1498.5 18.4 15.2 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:18 1498.2 18.9 15.2 4.24
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:18 1498.2 18.9 15.2 4.24
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:19 1498.1 19.4 15.2 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:19 1498.1 19.4 15.2 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:19 1498.1 19.9 15.1 4.24
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:19 1498.1 19.9 15.1 4.24
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:20 1498.1 20.4 15.1 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:20 1498.1 20.4 15.1 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:20 1498.1 20.9 15.0 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:20 1498.1 20.9 15.0 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:21 1498.1 21.4 15.0 4.24
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:21 1498.1 21.4 15.0 4.24
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:22 1498.2 21.9 14.9 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:22 1498.2 21.9 14.9 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:22 1498.2 22.4 14.9 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:22 1498.2 22.4 14.9 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:23 1498.1 22.9 14.8 4.20
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:23 1498.1 22.9 14.8 4.20
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:23 1498.0 23.4 14.8 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:23 1498.0 23.4 14.8 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:24 1497.6 23.9 14.8 4.23
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:24 1497.6 23.9 14.8 4.23
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:26:24 1497.4 24.4 14.8 4.21
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:26:24 1497.4 24.4 14.8 4.21
INFO:hydroffice.ssp.drivers.digibar:total count: 48
INFO hydroffice.ssp.drivers.digibar._read_body:190 > total count: 48
INFO:hydroffice.ssp.drivers.digibar:original date/time: 7-30-13 9:26:2
INFO hydroffice.ssp.drivers.digibar._read_body:200 > original date/time: 7-30-13 9:26:2
INFO:hydroffice.ssp.drivers.digibar:converted date/time: 2013-07-30 09:26:02
INFO hydroffice.ssp.drivers.digibar._read_body:208 > converted date/time: 2013-07-30 09:26:02
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2013-07-30 09:26:02
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast2.csv
- Sensor Type: 2
- Probe Type: 2
- Driver: DGS.DIGIBAR_S.0.2.0
- Samples: 48
0.90 1504.30 16.38 0.00
1.40 1504.20 16.38 0.00
1.90 1504.00 16.38 0.00
2.40 1503.70 16.38 0.00
2.90 1503.40 16.38 0.00
.... .... .... .... ....
24.40 1497.40 14.78 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2013-07-30 09:26:02
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast2.csv
- Sensor Type: 2
- Probe Type: 2
- Driver: DGS.DIGIBAR_S.0.2.0
- Samples: 48
0.90 1504.30 16.38 0.00
1.40 1504.20 16.38 0.00
1.90 1504.00 16.38 0.00
2.40 1503.70 16.38 0.00
2.90 1503.40 16.38 0.00
.... .... .... .... ....
24.40 1497.40 14.78 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 48)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 48)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast3.csv [4]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast3.csv [4]
INFO:hydroffice.ssp.drivers.digibar:reading ...
INFO hydroffice.ssp.drivers.digibar.__init__:135 > reading ...
INFO:hydroffice.ssp.drivers.digibar:reading > header
INFO hydroffice.ssp.drivers.digibar._read_header:142 > reading > header
INFO:hydroffice.ssp.drivers.digibar:probe type: 2
INFO hydroffice.ssp.drivers.digibar._read_header:145 > probe type: 2
INFO:hydroffice.ssp.drivers.digibar:sensor type: 2
INFO hydroffice.ssp.drivers.digibar._read_header:147 > sensor type: 2
INFO:hydroffice.ssp.drivers.digibar:max number of samples: 63
INFO hydroffice.ssp.drivers.digibar._read_header:150 > max number of samples: 63
INFO:hydroffice.ssp.drivers.digibar:reading > body
INFO hydroffice.ssp.drivers.digibar._read_body:157 > reading > body
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:52:54 1504.0 0.5 16.8 4.29
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:52:54 1504.0 0.5 16.8 4.29
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:52:54 1503.4 1.0 16.8 4.32
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:52:54 1503.4 1.0 16.8 4.32
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:52:55 1501.3 1.5 16.7 4.32
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:52:55 1501.3 1.5 16.7 4.32
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:52:57 1501.0 2.0 16.6 4.28
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:52:57 1501.0 2.0 16.6 4.28
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:52:57 1501.1 2.5 16.5 4.27
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:52:57 1501.1 2.5 16.5 4.27
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:52:58 1501.1 3.0 16.5 4.29
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:52:58 1501.1 3.0 16.5 4.29
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:52:58 1501.0 3.5 16.5 4.32
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:52:58 1501.0 3.5 16.5 4.32
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:52:58 1500.9 4.0 16.5 4.28
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:52:58 1500.9 4.0 16.5 4.28
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:52:58 1500.8 4.5 16.4 4.28
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:52:58 1500.8 4.5 16.4 4.28
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:52:59 1500.7 5.0 16.4 4.26
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:52:59 1500.7 5.0 16.4 4.26
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:52:59 1500.6 5.5 16.4 4.30
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:52:59 1500.6 5.5 16.4 4.30
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:52:59 1500.5 6.0 16.3 4.29
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:52:59 1500.5 6.0 16.3 4.29
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:0 1500.2 6.5 16.3 4.29
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:0 1500.2 6.5 16.3 4.29
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:0 1500.0 7.0 16.2 4.31
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:0 1500.0 7.0 16.2 4.31
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:1 1499.9 7.5 16.2 4.25
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:1 1499.9 7.5 16.2 4.25
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:1 1499.6 8.0 16.1 4.25
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:1 1499.6 8.0 16.1 4.25
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:1 1499.2 8.5 16.1 4.28
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:1 1499.2 8.5 16.1 4.28
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:2 1498.8 9.0 16.1 4.26
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:2 1498.8 9.0 16.1 4.26
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:2 1498.5 9.5 16.0 4.27
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:2 1498.5 9.5 16.0 4.27
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:3 1498.1 10.0 15.9 4.31
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:3 1498.1 10.0 15.9 4.31
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:3 1497.9 10.5 15.9 4.29
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:3 1497.9 10.5 15.9 4.29
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:3 1497.7 11.0 15.8 4.32
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:3 1497.7 11.0 15.8 4.32
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:4 1497.2 11.5 15.8 4.32
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:4 1497.2 11.5 15.8 4.32
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:4 1497.1 12.0 15.7 4.32
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:4 1497.1 12.0 15.7 4.32
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:5 1496.6 12.5 15.6 4.25
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:5 1496.6 12.5 15.6 4.25
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:5 1496.3 13.0 15.6 4.29
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:5 1496.3 13.0 15.6 4.29
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:6 1495.5 13.5 15.5 4.31
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:6 1495.5 13.5 15.5 4.31
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:6 1495.4 14.0 15.4 4.31
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:6 1495.4 14.0 15.4 4.31
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:7 1494.9 14.5 15.3 4.29
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:7 1494.9 14.5 15.3 4.29
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:7 1494.8 15.0 15.3 4.27
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:7 1494.8 15.0 15.3 4.27
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:7 1494.4 15.5 15.2 4.27
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:7 1494.4 15.5 15.2 4.27
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:8 1494.4 16.0 15.2 4.27
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:8 1494.4 16.0 15.2 4.27
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:8 1494.4 16.5 15.1 4.25
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:8 1494.4 16.5 15.1 4.25
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:9 1493.4 17.0 15.0 4.29
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:9 1493.4 17.0 15.0 4.29
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:9 1491.6 17.5 14.9 4.31
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:9 1491.6 17.5 14.9 4.31
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:10 1491.2 18.0 14.7 4.25
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:10 1491.2 18.0 14.7 4.25
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:11 1491.0 18.5 14.6 4.27
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:11 1491.0 18.5 14.6 4.27
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:11 1491.1 19.0 14.5 4.29
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:11 1491.1 19.0 14.5 4.29
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:12 1490.8 19.5 14.4 4.32
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:12 1490.8 19.5 14.4 4.32
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:12 1490.7 20.0 14.3 4.31
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:12 1490.7 20.0 14.3 4.31
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:12 1490.7 20.5 14.1 4.29
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:12 1490.7 20.5 14.1 4.29
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:13 1490.4 21.0 14.0 4.29
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:13 1490.4 21.0 14.0 4.29
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:13 1490.3 21.5 13.9 4.25
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:13 1490.3 21.5 13.9 4.25
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:15 1490.1 22.0 13.6 4.25
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:15 1490.1 22.0 13.6 4.25
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:16 1490.0 22.5 13.5 4.32
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:16 1490.0 22.5 13.5 4.32
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:17 1489.9 23.0 13.3 4.28
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:17 1489.9 23.0 13.3 4.28
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:17 1490.0 23.5 13.2 4.32
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:17 1490.0 23.5 13.2 4.32
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:18 1489.9 24.0 13.0 4.31
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:18 1489.9 24.0 13.0 4.31
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:19 1489.9 24.5 12.9 4.32
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:19 1489.9 24.5 12.9 4.32
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:19 1489.9 25.0 12.8 4.28
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:19 1489.9 25.0 12.8 4.28
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:21 1488.8 25.5 12.6 4.31
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:21 1488.8 25.5 12.6 4.31
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:22 1487.9 26.0 12.5 4.30
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:22 1487.9 26.0 12.5 4.30
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:23 1487.7 26.5 12.4 4.25
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:23 1487.7 26.5 12.4 4.25
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:25 1487.5 27.0 12.1 4.30
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:25 1487.5 27.0 12.1 4.30
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:26 1487.4 27.5 12.0 4.26
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:26 1487.4 27.5 12.0 4.26
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:26 1487.4 28.0 11.9 4.26
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:26 1487.4 28.0 11.9 4.26
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:27 1487.4 28.5 11.8 4.28
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:27 1487.4 28.5 11.8 4.28
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:30 1487.3 29.0 11.6 4.31
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:30 1487.3 29.0 11.6 4.31
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:31 1487.4 29.5 11.5 4.27
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:31 1487.4 29.5 11.5 4.27
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:31 1487.4 30.0 11.4 4.26
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:31 1487.4 30.0 11.4 4.26
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:32 1487.4 30.5 11.4 4.28
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:32 1487.4 30.5 11.4 4.28
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:32 1487.4 31.0 11.3 4.26
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:32 1487.4 31.0 11.3 4.26
INFO:hydroffice.ssp.drivers.digibar:7-30-13 9:53:32 1487.4 31.5 11.3 4.25
INFO hydroffice.ssp.drivers.digibar._read_body:176 > 7-30-13 9:53:32 1487.4 31.5 11.3 4.25
INFO:hydroffice.ssp.drivers.digibar:total count: 63
INFO hydroffice.ssp.drivers.digibar._read_body:190 > total count: 63
INFO:hydroffice.ssp.drivers.digibar:original date/time: 7-30-13 9:52:54
INFO hydroffice.ssp.drivers.digibar._read_body:200 > original date/time: 7-30-13 9:52:54
INFO:hydroffice.ssp.drivers.digibar:converted date/time: 2013-07-30 09:52:54
INFO hydroffice.ssp.drivers.digibar._read_body:208 > converted date/time: 2013-07-30 09:52:54
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2013-07-30 09:52:54
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast3.csv
- Sensor Type: 2
- Probe Type: 2
- Driver: DGS.DIGIBAR_S.0.2.0
- Samples: 63
0.50 1504.00 16.83 0.00
1.00 1503.40 16.83 0.00
1.50 1501.30 16.74 0.00
2.00 1501.00 16.63 0.00
2.50 1501.10 16.54 0.00
.... .... .... .... ....
31.50 1487.40 11.35 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2013-07-30 09:52:54
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast3.csv
- Sensor Type: 2
- Probe Type: 2
- Driver: DGS.DIGIBAR_S.0.2.0
- Samples: 63
0.50 1504.00 16.83 0.00
1.00 1503.40 16.83 0.00
1.50 1501.30 16.74 0.00
2.00 1501.00 16.63 0.00
2.50 1501.10 16.54 0.00
.... .... .... .... ....
31.50 1487.40 11.35 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 63)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 63)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:testing VALEPORT_MINI_SVP (txt)
DEBUG hydroffice.ssp.cast_reader.test_drivers:78 > testing VALEPORT_MINI_SVP (txt)
DEBUG:hydroffice.ssp.cast_reader:reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\mini_svp
DEBUG hydroffice.ssp.cast_reader.test_drivers:89 > reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\mini_svp
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\mini_svp file in the data folder: 1
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\mini_svp file in the data folder: 1
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\mini_svp\V000056.TXT [11]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\mini_svp\V000056.TXT [11]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:date time: 2013-06-05 08:10:41
INFO hydroffice.ssp.drivers.valeport.parse_mini_svp_header:75 > date time: 2013-06-05 08:10:41
INFO:hydroffice.ssp.drivers.valeport:probe type: 7
INFO hydroffice.ssp.drivers.valeport.parse_mini_svp_header:90 > probe type: 7
INFO:hydroffice.ssp.drivers.valeport:latitude: 38.499979
INFO hydroffice.ssp.drivers.valeport.parse_mini_svp_header:82 > latitude: 38.499979
INFO:hydroffice.ssp.drivers.valeport:total samples: 629
INFO hydroffice.ssp.drivers.valeport.parse_mini_svp_header:97 > total samples: 629
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:number of samples: 623
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 623
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2013-06-05 08:10:41
- Position: None 38.499979
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\mini_svp\V000056.TXT
- Sensor Type: 7
- Probe Type: 22
- Driver: VAL.MiniSVP.0.2.0
- Samples: 623
0.12 1522.57 20.75 0.00
0.15 1522.57 20.50 0.00
0.20 1522.55 20.18 0.00
0.30 1522.53 19.78 0.00
0.40 1522.49 19.55 0.00
.... .... .... .... ....
0.39 1522.43 18.96 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2013-06-05 08:10:41
- Position: None 38.499979
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\mini_svp\V000056.TXT
- Sensor Type: 7
- Probe Type: 22
- Driver: VAL.MiniSVP.0.2.0
- Samples: 623
0.12 1522.57 20.75 0.00
0.15 1522.57 20.50 0.00
0.20 1522.55 20.18 0.00
0.30 1522.53 19.78 0.00
0.40 1522.49 19.55 0.00
.... .... .... .... ....
0.39 1522.43 18.96 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 623)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 623)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:testing UNB (unb)
DEBUG hydroffice.ssp.cast_reader.test_drivers:78 > testing UNB (unb)
DEBUG:hydroffice.ssp.cast_reader:reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb
DEBUG hydroffice.ssp.cast_reader.test_drivers:89 > reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb file in the data folder: 2
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb file in the data folder: 2
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb\WOD_CTDO1014_3316204.unb [8]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb\WOD_CTDO1014_3316204.unb [8]
INFO:hydroffice.ssp.drivers.unb:reading ...
INFO hydroffice.ssp.drivers.unb.__init__:22 > reading ...
INFO:hydroffice.ssp.drivers.unb:reading > header
INFO hydroffice.ssp.drivers.unb._read_header:29 > reading > header
INFO:hydroffice.ssp.drivers.unb:version: 2
INFO hydroffice.ssp.drivers.unb._read_header:33 > version: 2
INFO:hydroffice.ssp.drivers.unb:time: 1990-07-06 08:00:00
INFO hydroffice.ssp.drivers.unb._read_header:44 > time: 1990-07-06 08:00:00
INFO:hydroffice.ssp.drivers.unb:position: 10.0 150.0
INFO hydroffice.ssp.drivers.unb._read_header:53 > position: 10.0 150.0
INFO:hydroffice.ssp.drivers.unb:total samples: 2698
INFO hydroffice.ssp.drivers.unb._read_header:60 > total samples: 2698
INFO:hydroffice.ssp.drivers.unb:sensor type: 4
INFO hydroffice.ssp.drivers.unb._read_header:66 > sensor type: 4
INFO:hydroffice.ssp.drivers.unb:probe type: 7
INFO hydroffice.ssp.drivers.unb._read_header:68 > probe type: 7
INFO:hydroffice.ssp.drivers.unb:reading > body
INFO hydroffice.ssp.drivers.unb._read_body:77 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 1990-07-06 08:00:00
- Position: 150.0 10.0
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb\WOD_CTDO1014_3316204.unb
- Sensor Type: 4
- Probe Type: 7
- Driver: UNB.0.2.0
- Samples: 2698
1.00 1543.21 29.47 33.74
3.00 1543.55 29.42 34.14
5.00 1543.39 29.31 34.18
7.00 1543.42 29.30 34.19
8.90 1543.44 29.29 34.20
.... .... .... .... ....
5297.80 1546.30 1.49 34.70
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 1990-07-06 08:00:00
- Position: 150.0 10.0
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb\WOD_CTDO1014_3316204.unb
- Sensor Type: 4
- Probe Type: 7
- Driver: UNB.0.2.0
- Samples: 2698
1.00 1543.21 29.47 33.74
3.00 1543.55 29.42 34.14
5.00 1543.39 29.31 34.18
7.00 1543.42 29.30 34.19
8.90 1543.44 29.29 34.20
.... .... .... .... ....
5297.80 1546.30 1.49 34.70
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 2698)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 2698)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb\WOD_XBTO1114_4012672.unb [8]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb\WOD_XBTO1114_4012672.unb [8]
INFO:hydroffice.ssp.drivers.unb:reading ...
INFO hydroffice.ssp.drivers.unb.__init__:22 > reading ...
INFO:hydroffice.ssp.drivers.unb:reading > header
INFO hydroffice.ssp.drivers.unb._read_header:29 > reading > header
INFO:hydroffice.ssp.drivers.unb:version: 2
INFO hydroffice.ssp.drivers.unb._read_header:33 > version: 2
INFO:hydroffice.ssp.drivers.unb:time: 1992-07-28 00:00:00
INFO hydroffice.ssp.drivers.unb._read_header:44 > time: 1992-07-28 00:00:00
INFO:hydroffice.ssp.drivers.unb:position: 10.7167 149.75
INFO hydroffice.ssp.drivers.unb._read_header:53 > position: 10.7167 149.75
INFO:hydroffice.ssp.drivers.unb:total samples: 97
INFO hydroffice.ssp.drivers.unb._read_header:60 > total samples: 97
INFO:hydroffice.ssp.drivers.unb:sensor type: 4
INFO hydroffice.ssp.drivers.unb._read_header:66 > sensor type: 4
INFO:hydroffice.ssp.drivers.unb:probe type: 7
INFO hydroffice.ssp.drivers.unb._read_header:68 > probe type: 7
INFO:hydroffice.ssp.drivers.unb:reading > body
INFO hydroffice.ssp.drivers.unb._read_body:77 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 1992-07-28 00:00:00
- Position: 149.75 10.7167
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb\WOD_XBTO1114_4012672.unb
- Sensor Type: 4
- Probe Type: 7
- Driver: UNB.0.2.0
- Samples: 97
3.00 1543.10 29.03 34.50
6.00 1543.04 28.98 34.50
10.00 1543.22 29.03 34.50
12.00 1543.32 29.06 34.50
45.00 1543.53 28.90 34.50
.... .... .... .... ....
721.00 1487.13 6.27 34.50
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 1992-07-28 00:00:00
- Position: 149.75 10.7167
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb\WOD_XBTO1114_4012672.unb
- Sensor Type: 4
- Probe Type: 7
- Driver: UNB.0.2.0
- Samples: 97
3.00 1543.10 29.03 34.50
6.00 1543.04 28.98 34.50
10.00 1543.22 29.03 34.50
12.00 1543.32 29.06 34.50
45.00 1543.53 28.90 34.50
.... .... .... .... ....
721.00 1487.13 6.27 34.50
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 97)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 97)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:testing VALEPORT_MIDAS (000)
DEBUG hydroffice.ssp.cast_reader.test_drivers:78 > testing VALEPORT_MIDAS (000)
DEBUG:hydroffice.ssp.cast_reader:reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas
DEBUG hydroffice.ssp.cast_reader.test_drivers:89 > reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas file in the data folder: 14
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas file in the data folder: 14
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE1.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE1.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-10 11:08:59
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-10 11:08:59
INFO:hydroffice.ssp.drivers.valeport:total samples: 6590
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 6590
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 4897 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 4897 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 1693
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 1693
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-10 11:08:59
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE1.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 1693
0.69 1478.24 7.33 0.00
0.49 1478.03 7.33 0.00
0.07 1473.46 7.35 0.00
0.38 1477.76 7.31 0.00
0.72 1477.62 7.31 0.00
.... .... .... .... ....
0.10 1477.14 7.26 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-10 11:08:59
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE1.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 1693
0.69 1478.24 7.33 0.00
0.49 1478.03 7.33 0.00
0.07 1473.46 7.35 0.00
0.38 1477.76 7.31 0.00
0.72 1477.62 7.31 0.00
.... .... .... .... ....
0.10 1477.14 7.26 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1693)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1693)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE10.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE10.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-15 06:11:33
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-15 06:11:33
INFO:hydroffice.ssp.drivers.valeport:total samples: 6512
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 6512
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 1997 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 1997 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 4515
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 4515
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-15 06:11:33
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE10.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 4515
-0.09 1474.53 9.44 0.00
-0.03 1474.44 9.57 0.00
-0.01 1474.39 9.64 0.00
0.06 1474.41 9.67 0.00
0.14 1474.40 9.68 0.00
.... .... .... .... ....
0.02 1474.72 9.65 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-15 06:11:33
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE10.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 4515
-0.09 1474.53 9.44 0.00
-0.03 1474.44 9.57 0.00
-0.01 1474.39 9.64 0.00
0.06 1474.41 9.67 0.00
0.14 1474.40 9.68 0.00
.... .... .... .... ....
0.02 1474.72 9.65 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 4515)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 4515)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE13.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE13.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-05 11:19:50
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-05 11:19:50
INFO:hydroffice.ssp.drivers.valeport:total samples: 5650
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 5650
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 2859 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 2859 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 2791
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 2791
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-05 11:19:50
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE13.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 2791
9.70 1465.52 9.25 0.00
9.77 1465.46 9.41 0.00
9.86 1465.20 9.53 0.00
9.98 1465.17 9.60 0.00
10.03 1465.14 9.66 0.00
.... .... .... .... ....
9.84 1464.85 9.74 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-05 11:19:50
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE13.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 2791
9.70 1465.52 9.25 0.00
9.77 1465.46 9.41 0.00
9.86 1465.20 9.53 0.00
9.98 1465.17 9.60 0.00
10.03 1465.14 9.66 0.00
.... .... .... .... ....
9.84 1464.85 9.74 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 2791)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 2791)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE13_valeport.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE13_valeport.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-05 11:19:50
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-05 11:19:50
INFO:hydroffice.ssp.drivers.valeport:total samples: 5650
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 5650
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 2859 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 2859 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 2791
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 2791
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-05 11:19:50
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE13_valeport.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 2791
9.70 1465.52 9.25 0.00
9.77 1465.46 9.41 0.00
9.86 1465.20 9.53 0.00
9.98 1465.17 9.60 0.00
10.03 1465.14 9.66 0.00
.... .... .... .... ....
9.84 1464.85 9.74 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-05 11:19:50
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE13_valeport.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 2791
9.70 1465.52 9.25 0.00
9.77 1465.46 9.41 0.00
9.86 1465.20 9.53 0.00
9.98 1465.17 9.60 0.00
10.03 1465.14 9.66 0.00
.... .... .... .... ....
9.84 1464.85 9.74 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 2791)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 2791)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE14.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE14.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-05 13:50:14
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-05 13:50:14
INFO:hydroffice.ssp.drivers.valeport:total samples: 4837
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 4837
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 3119 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 3119 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 1718
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 1718
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-05 13:50:14
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE14.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 1718
9.71 1465.69 11.01 0.00
9.70 1465.66 10.69 0.00
9.74 1465.63 10.45 0.00
9.78 1465.67 10.30 0.00
9.82 1465.72 10.19 0.00
.... .... .... .... ....
9.87 1465.20 9.74 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-05 13:50:14
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE14.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 1718
9.71 1465.69 11.01 0.00
9.70 1465.66 10.69 0.00
9.74 1465.63 10.45 0.00
9.78 1465.67 10.30 0.00
9.82 1465.72 10.19 0.00
.... .... .... .... ....
9.87 1465.20 9.74 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1718)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1718)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE15.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE15.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-05 14:11:06
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-05 14:11:06
INFO:hydroffice.ssp.drivers.valeport:total samples: 2387
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 2387
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 1550 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 1550 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 837
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 837
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-05 14:11:06
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE15.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 837
9.78 1465.38 9.14 0.00
9.84 1465.39 9.34 0.00
9.89 1465.40 9.50 0.00
9.95 1465.39 9.61 0.00
10.00 1465.40 9.69 0.00
.... .... .... .... ....
9.84 1465.23 9.70 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-05 14:11:06
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE15.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 837
9.78 1465.38 9.14 0.00
9.84 1465.39 9.34 0.00
9.89 1465.40 9.50 0.00
9.95 1465.39 9.61 0.00
10.00 1465.40 9.69 0.00
.... .... .... .... ....
9.84 1465.23 9.70 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 837)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 837)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE16.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE16.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-05 14:21:58
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-05 14:21:58
INFO:hydroffice.ssp.drivers.valeport:total samples: 2483
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 2483
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 1252 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 1252 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 1231
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 1231
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-05 14:21:58
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE16.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 1231
9.82 1464.36 8.61 0.00
9.87 1464.38 8.88 0.00
9.94 1464.41 9.08 0.00
10.04 1464.45 9.22 0.00
10.20 1464.39 9.33 0.00
.... .... .... .... ....
9.82 1464.76 9.53 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-05 14:21:58
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE16.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 1231
9.82 1464.36 8.61 0.00
9.87 1464.38 8.88 0.00
9.94 1464.41 9.08 0.00
10.04 1464.45 9.22 0.00
10.20 1464.39 9.33 0.00
.... .... .... .... ....
9.82 1464.76 9.53 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1231)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1231)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE17.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE17.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-05 14:33:12
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-05 14:33:12
INFO:hydroffice.ssp.drivers.valeport:total samples: 4561
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 4561
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 3675 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 3675 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 886
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 886
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-05 14:33:12
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE17.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 886
9.77 1465.34 9.06 0.00
9.79 1465.36 9.25 0.00
9.77 1465.40 9.47 0.00
9.80 1465.40 9.54 0.00
9.77 1465.40 9.58 0.00
.... .... .... .... ....
9.79 1465.80 9.61 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-05 14:33:12
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE17.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 886
9.77 1465.34 9.06 0.00
9.79 1465.36 9.25 0.00
9.77 1465.40 9.47 0.00
9.80 1465.40 9.54 0.00
9.77 1465.40 9.58 0.00
.... .... .... .... ....
9.79 1465.80 9.61 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 886)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 886)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE18.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE18.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-05 19:52:14
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-05 19:52:14
INFO:hydroffice.ssp.drivers.valeport:total samples: 7586
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 7586
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 7074 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 7074 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 512
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 512
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-05 19:52:14
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE18.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 512
9.87 1464.76 8.10 0.00
9.88 1464.70 8.50 0.00
9.97 1464.74 8.82 0.00
10.09 1464.75 9.05 0.00
10.18 1464.75 9.23 0.00
.... .... .... .... ....
9.89 1464.88 9.23 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-05 19:52:14
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE18.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 512
9.87 1464.76 8.10 0.00
9.88 1464.70 8.50 0.00
9.97 1464.74 8.82 0.00
10.09 1464.75 9.05 0.00
10.18 1464.75 9.23 0.00
.... .... .... .... ....
9.89 1464.88 9.23 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 512)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 512)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE4.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE4.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-11 06:29:14
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-11 06:29:14
INFO:hydroffice.ssp.drivers.valeport:total samples: 8926
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 8926
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 1880 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 1880 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 7046
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 7046
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-11 06:29:14
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE4.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 7046
0.09 1479.25 8.39 0.00
0.11 1479.56 8.87 0.00
0.05 1479.38 9.09 0.00
0.09 1479.28 9.19 0.00
0.12 1479.43 9.24 0.00
.... .... .... .... ....
-0.00 1480.15 9.26 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-11 06:29:14
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE4.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 7046
0.09 1479.25 8.39 0.00
0.11 1479.56 8.87 0.00
0.05 1479.38 9.09 0.00
0.09 1479.28 9.19 0.00
0.12 1479.43 9.24 0.00
.... .... .... .... ....
-0.00 1480.15 9.26 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 7046)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 7046)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE5.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE5.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-12 06:34:14
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-12 06:34:14
INFO:hydroffice.ssp.drivers.valeport:total samples: 4211
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 4211
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 1445 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 1445 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 2766
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 2766
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-12 06:34:14
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE5.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 2766
0.28 1478.73 9.07 0.00
0.54 1478.70 9.23 0.00
0.62 1478.68 9.31 0.00
0.62 1478.72 9.35 0.00
0.61 1478.73 9.37 0.00
.... .... .... .... ....
0.23 1478.31 9.36 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-12 06:34:14
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE5.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 2766
0.28 1478.73 9.07 0.00
0.54 1478.70 9.23 0.00
0.62 1478.68 9.31 0.00
0.62 1478.72 9.35 0.00
0.61 1478.73 9.37 0.00
.... .... .... .... ....
0.23 1478.31 9.36 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 2766)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 2766)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE6.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE6.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-12 14:23:18
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-12 14:23:18
INFO:hydroffice.ssp.drivers.valeport:total samples: 4446
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 4446
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 1602 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 1602 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 2844
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 2844
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-12 14:23:18
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE6.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 2844
0.13 1480.17 10.56 0.00
0.21 1480.19 9.98 0.00
0.27 1480.12 9.73 0.00
0.37 1480.04 9.60 0.00
0.47 1480.03 9.55 0.00
.... .... .... .... ....
0.23 1480.02 9.49 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-12 14:23:18
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE6.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 2844
0.13 1480.17 10.56 0.00
0.21 1480.19 9.98 0.00
0.27 1480.12 9.73 0.00
0.37 1480.04 9.60 0.00
0.47 1480.03 9.55 0.00
.... .... .... .... ....
0.23 1480.02 9.49 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 2844)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 2844)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE7.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE7.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-13 07:33:06
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-13 07:33:06
INFO:hydroffice.ssp.drivers.valeport:total samples: 7830
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 7830
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 1877 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 1877 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 5953
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 5953
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-13 07:33:06
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE7.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 5953
0.10 1479.64 8.23 0.00
0.23 1479.66 8.28 0.00
0.24 1479.65 8.30 0.00
0.29 1479.65 8.31 0.00
0.43 1479.67 8.32 0.00
.... .... .... .... ....
0.09 1479.20 8.01 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-13 07:33:06
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE7.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 5953
0.10 1479.64 8.23 0.00
0.23 1479.66 8.28 0.00
0.24 1479.65 8.30 0.00
0.29 1479.65 8.31 0.00
0.43 1479.67 8.32 0.00
.... .... .... .... ....
0.09 1479.20 8.01 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 5953)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 5953)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE9.000 [9]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE9.000 [9]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 21
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 21
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-05-13 16:25:46
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-05-13 16:25:46
INFO:hydroffice.ssp.drivers.valeport:total samples: 9580
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 9580
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 2445 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 2445 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 7135
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 7135
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-13 16:25:46
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE9.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 7135
0.04 1479.22 7.85 0.00
0.13 1479.23 8.02 0.00
0.23 1479.23 8.09 0.00
0.35 1479.25 8.13 0.00
0.42 1479.26 8.15 0.00
.... .... .... .... ....
-0.07 1479.55 7.95 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-13 16:25:46
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE9.000
- Sensor Type: 7
- Probe Type: 21
- Driver: VAL.MIDAS.0.2.0
- Samples: 7135
0.04 1479.22 7.85 0.00
0.13 1479.23 8.02 0.00
0.23 1479.23 8.09 0.00
0.35 1479.25 8.13 0.00
0.42 1479.26 8.15 0.00
.... .... .... .... ....
-0.07 1479.55 7.95 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 7135)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 7135)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:testing SEABIRD (cnv)
DEBUG hydroffice.ssp.cast_reader.test_drivers:78 > testing SEABIRD (cnv)
DEBUG:hydroffice.ssp.cast_reader:reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird
DEBUG hydroffice.ssp.cast_reader.test_drivers:89 > reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird file in the data folder: 2
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird file in the data folder: 2
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird\2013_192_124923test.cnv [6]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird\2013_192_124923test.cnv [6]
INFO:hydroffice.ssp.drivers.seabird:reading ...
INFO hydroffice.ssp.drivers.seabird.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.seabird:reading > header
INFO hydroffice.ssp.drivers.seabird._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.seabird:reading > body
INFO hydroffice.ssp.drivers.seabird._read_body:160 > reading > body
INFO:hydroffice.ssp.drivers.seabird:parsed 1520 samples
INFO hydroffice.ssp.drivers.seabird._read_body:177 > parsed 1520 samples
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2013-07-11 13:01:09
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird\2013_192_124923test.cnv
- Sensor Type: 3
- Probe Type: 6
- Driver: SEB.0.2.0
- Samples: 1520
-0.02 1498.33 25.44 0.41
-0.02 1498.32 25.44 0.40
-0.03 1498.33 25.44 0.41
-0.03 1498.40 25.44 0.47
-0.02 1498.37 25.44 0.44
.... .... .... .... ....
16.09 1511.91 26.43 10.36
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2013-07-11 13:01:09
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird\2013_192_124923test.cnv
- Sensor Type: 3
- Probe Type: 6
- Driver: SEB.0.2.0
- Samples: 1520
-0.02 1498.33 25.44 0.41
-0.02 1498.32 25.44 0.40
-0.03 1498.33 25.44 0.41
-0.03 1498.40 25.44 0.47
-0.02 1498.37 25.44 0.44
.... .... .... .... ....
16.09 1511.91 26.43 10.36
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1520)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1520)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird\FK001_CTD02.cnv [6]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird\FK001_CTD02.cnv [6]
INFO:hydroffice.ssp.drivers.seabird:reading ...
INFO hydroffice.ssp.drivers.seabird.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.seabird:reading > header
INFO hydroffice.ssp.drivers.seabird._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.seabird:reading > body
INFO hydroffice.ssp.drivers.seabird._read_body:160 > reading > body
INFO:hydroffice.ssp.drivers.seabird:parsed 39854 samples
INFO hydroffice.ssp.drivers.seabird._read_body:177 > parsed 39854 samples
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-13 16:41:41
- Position: 5.435 61.04
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird\FK001_CTD02.cnv
- Sensor Type: 3
- Probe Type: 6
- Driver: SEB.0.2.0
- Samples: 39854
1.49 1455.71 8.15 12.80
1.44 1455.69 8.15 12.79
1.44 1455.58 8.15 12.70
1.44 1455.57 8.15 12.69
1.49 1455.70 8.15 12.80
.... .... .... .... ....
972.35 1496.30 7.36 35.03
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-13 16:41:41
- Position: 5.435 61.04
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird\FK001_CTD02.cnv
- Sensor Type: 3
- Probe Type: 6
- Driver: SEB.0.2.0
- Samples: 39854
1.49 1455.71 8.15 12.80
1.44 1455.69 8.15 12.79
1.44 1455.58 8.15 12.70
1.44 1455.57 8.15 12.69
1.49 1455.70 8.15 12.80
.... .... .... .... ....
972.35 1496.30 7.36 35.03
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 39854)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 39854)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:testing DIGIBAR_PRO (txt)
DEBUG hydroffice.ssp.cast_reader.test_drivers:78 > testing DIGIBAR_PRO (txt)
DEBUG:hydroffice.ssp.cast_reader:reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\pro
DEBUG hydroffice.ssp.cast_reader.test_drivers:89 > reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\pro
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\pro file in the data folder: 1
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\pro file in the data folder: 1
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\pro\20110921SVP.txt [3]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\pro\20110921SVP.txt [3]
INFO:hydroffice.ssp.drivers.digibar:reading ...
INFO hydroffice.ssp.drivers.digibar.__init__:26 > reading ...
INFO:hydroffice.ssp.drivers.digibar:reading > header
INFO hydroffice.ssp.drivers.digibar._read_header:33 > reading > header
INFO:hydroffice.ssp.drivers.digibar:date: 2011-09-21 19:45:00
INFO hydroffice.ssp.drivers.digibar._read_header:58 > date: 2011-09-21 19:45:00
INFO:hydroffice.ssp.drivers.digibar:probe type: 2
INFO hydroffice.ssp.drivers.digibar._read_header:64 > probe type: 2
INFO:hydroffice.ssp.drivers.digibar:sensor type: 2
INFO hydroffice.ssp.drivers.digibar._read_header:66 > sensor type: 2
INFO:hydroffice.ssp.drivers.digibar:max number of samples: 31
INFO hydroffice.ssp.drivers.digibar._read_header:69 > max number of samples: 31
INFO:hydroffice.ssp.drivers.digibar:reading > body
INFO hydroffice.ssp.drivers.digibar._read_body:77 > reading > body
INFO:hydroffice.ssp.drivers.digibar:0 0.7 1145.6 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 0 0.7 1145.6 20.0
INFO:hydroffice.ssp.drivers.digibar:1 1.0 1266.6 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 1 1.0 1266.6 20.0
INFO:hydroffice.ssp.drivers.digibar:2 1.5 1497.6 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 2 1.5 1497.6 20.0
INFO:hydroffice.ssp.drivers.digibar:3 2.0 1506.2 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 3 2.0 1506.2 20.0
INFO:hydroffice.ssp.drivers.digibar:4 2.5 1505.7 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 4 2.5 1505.7 20.0
INFO:hydroffice.ssp.drivers.digibar:5 3.0 1504.7 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 5 3.0 1504.7 20.0
INFO:hydroffice.ssp.drivers.digibar:6 3.5 1503.7 21.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 6 3.5 1503.7 21.0
INFO:hydroffice.ssp.drivers.digibar:7 4.0 1502.7 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 7 4.0 1502.7 20.0
INFO:hydroffice.ssp.drivers.digibar:8 4.5 1502.3 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 8 4.5 1502.3 20.0
INFO:hydroffice.ssp.drivers.digibar:9 5.0 1502.1 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 9 5.0 1502.1 20.0
INFO:hydroffice.ssp.drivers.digibar:10 5.5 1501.9 21.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 10 5.5 1501.9 21.0
INFO:hydroffice.ssp.drivers.digibar:11 6.0 1500.1 21.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 11 6.0 1500.1 21.0
INFO:hydroffice.ssp.drivers.digibar:12 6.5 1499.5 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 12 6.5 1499.5 20.0
INFO:hydroffice.ssp.drivers.digibar:13 7.0 1123.3 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 13 7.0 1123.3 20.0
INFO:hydroffice.ssp.drivers.digibar:14 6.5 1500.2 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 14 6.5 1500.2 20.0
INFO:hydroffice.ssp.drivers.digibar:15 6.0 1502.0 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 15 6.0 1502.0 20.0
INFO:hydroffice.ssp.drivers.digibar:16 5.5 1502.2 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 16 5.5 1502.2 20.0
INFO:hydroffice.ssp.drivers.digibar:17 5.0 1502.5 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 17 5.0 1502.5 20.0
INFO:hydroffice.ssp.drivers.digibar:18 4.5 1503.2 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 18 4.5 1503.2 20.0
INFO:hydroffice.ssp.drivers.digibar:19 3.9 1504.5 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 19 3.9 1504.5 20.0
INFO:hydroffice.ssp.drivers.digibar:20 3.5 1505.8 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 20 3.5 1505.8 20.0
INFO:hydroffice.ssp.drivers.digibar:21 3.0 1506.5 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 21 3.0 1506.5 20.0
INFO:hydroffice.ssp.drivers.digibar:22 2.4 1507.0 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 22 2.4 1507.0 20.0
INFO:hydroffice.ssp.drivers.digibar:23 2.0 1507.0 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 23 2.0 1507.0 20.0
INFO:hydroffice.ssp.drivers.digibar:24 1.5 1507.0 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 24 1.5 1507.0 20.0
INFO:hydroffice.ssp.drivers.digibar:25 1.0 1123.3 20.0
INFO hydroffice.ssp.drivers.digibar._read_body:101 > 25 1.0 1123.3 20.0
INFO:hydroffice.ssp.drivers.digibar:good samples: 26
INFO hydroffice.ssp.drivers.digibar._read_body:111 > good samples: 26
INFO:hydroffice.ssp.drivers.digibar:resizing from 31 to 26
INFO hydroffice.ssp.drivers.digibar._read_body:114 > resizing from 31 to 26
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2011-09-21 19:45:00
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\pro\20110921SVP.txt
- Sensor Type: 2
- Probe Type: 2
- Driver: DGP.DIGIBAR_PRO.0.2.0
- Samples: 26
0.70 1145.60 20.00 0.00
1.00 1266.60 20.00 0.00
1.50 1497.60 20.00 0.00
2.00 1506.20 20.00 0.00
2.50 1505.70 20.00 0.00
.... .... .... .... ....
1.00 1123.30 20.00 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2011-09-21 19:45:00
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\pro\20110921SVP.txt
- Sensor Type: 2
- Probe Type: 2
- Driver: DGP.DIGIBAR_PRO.0.2.0
- Samples: 26
0.70 1145.60 20.00 0.00
1.00 1266.60 20.00 0.00
1.50 1497.60 20.00 0.00
2.00 1506.20 20.00 0.00
2.50 1505.70 20.00 0.00
.... .... .... .... ....
1.00 1123.30 20.00 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 26)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 26)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:testing CASTAWAY (csv)
DEBUG hydroffice.ssp.cast_reader.test_drivers:78 > testing CASTAWAY (csv)
DEBUG:hydroffice.ssp.cast_reader:reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway
DEBUG hydroffice.ssp.cast_reader.test_drivers:89 > reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway file in the data folder: 3
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway file in the data folder: 3
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway\10G100412_20111106_203824.csv [0]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway\10G100412_20111106_203824.csv [0]
INFO:hydroffice.ssp.drivers.castaway:reading ...
INFO hydroffice.ssp.drivers.castaway.__init__:21 > reading ...
INFO:hydroffice.ssp.drivers.castaway:reading > header
INFO hydroffice.ssp.drivers.castaway._read_header:32 > reading > header
INFO:hydroffice.ssp.drivers.castaway:filename: 10G100412_20111106_203824
INFO hydroffice.ssp.drivers.castaway._read_header:74 > filename: 10G100412_20111106_203824
INFO:hydroffice.ssp.drivers.castaway:date: 2011-11-06 20:38:24
INFO hydroffice.ssp.drivers.castaway._read_header:87 > date: 2011-11-06 20:38:24
INFO:hydroffice.ssp.drivers.castaway:latitude: 43.0882332
INFO hydroffice.ssp.drivers.castaway._read_header:96 > latitude: 43.0882332
INFO:hydroffice.ssp.drivers.castaway:longitude: -70.9389854
INFO hydroffice.ssp.drivers.castaway._read_header:105 > longitude: -70.9389854
INFO:hydroffice.ssp.drivers.castaway:samples offset: 29
INFO hydroffice.ssp.drivers.castaway._read_header:69 > samples offset: 29
INFO:hydroffice.ssp.drivers.castaway:max samples: 54
INFO hydroffice.ssp.drivers.castaway._read_header:128 > max samples: 54
INFO:hydroffice.ssp.drivers.castaway:sensor type: 3
INFO hydroffice.ssp.drivers.castaway._read_header:137 > sensor type: 3
INFO:hydroffice.ssp.drivers.castaway:probe_type: 3
INFO hydroffice.ssp.drivers.castaway._read_header:138 > probe_type: 3
INFO:hydroffice.ssp.drivers.castaway:reading > body
INFO hydroffice.ssp.drivers.castaway._read_body:141 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2011-11-06 20:38:24
- Position: -70.9389854 43.0882332
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway\10G100412_20111106_203824.csv
- Sensor Type: 3
- Probe Type: 3
- Driver: CST.0.2.0
- Samples: 54
0.15 1470.61 16.35 0.03
0.46 1442.03 8.68 0.04
0.77 1432.02 6.31 0.05
1.07 1428.72 5.56 0.05
1.38 1428.14 5.42 0.05
.... .... .... .... ....
0.15 1425.07 4.74 0.04
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2011-11-06 20:38:24
- Position: -70.9389854 43.0882332
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway\10G100412_20111106_203824.csv
- Sensor Type: 3
- Probe Type: 3
- Driver: CST.0.2.0
- Samples: 54
0.15 1470.61 16.35 0.03
0.46 1442.03 8.68 0.04
0.77 1432.02 6.31 0.05
1.07 1428.72 5.56 0.05
1.38 1428.14 5.42 0.05
.... .... .... .... ....
0.15 1425.07 4.74 0.04
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 54)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 54)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway\10M100491_20120222_070924_cast_away.csv [0]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway\10M100491_20120222_070924_cast_away.csv [0]
INFO:hydroffice.ssp.drivers.castaway:reading ...
INFO hydroffice.ssp.drivers.castaway.__init__:21 > reading ...
INFO:hydroffice.ssp.drivers.castaway:reading > header
INFO hydroffice.ssp.drivers.castaway._read_header:32 > reading > header
INFO:hydroffice.ssp.drivers.castaway:filename: 10M100491_20120222_070924
INFO hydroffice.ssp.drivers.castaway._read_header:74 > filename: 10M100491_20120222_070924
INFO:hydroffice.ssp.drivers.castaway:date: 2012-02-22 07:09:24
INFO hydroffice.ssp.drivers.castaway._read_header:87 > date: 2012-02-22 07:09:24
INFO:hydroffice.ssp.drivers.castaway:samples offset: 29
INFO hydroffice.ssp.drivers.castaway._read_header:69 > samples offset: 29
INFO:hydroffice.ssp.drivers.castaway:max samples: 81
INFO hydroffice.ssp.drivers.castaway._read_header:128 > max samples: 81
INFO:hydroffice.ssp.drivers.castaway:sensor type: 3
INFO hydroffice.ssp.drivers.castaway._read_header:137 > sensor type: 3
INFO:hydroffice.ssp.drivers.castaway:probe_type: 3
INFO hydroffice.ssp.drivers.castaway._read_header:138 > probe_type: 3
INFO:hydroffice.ssp.drivers.castaway:reading > body
INFO hydroffice.ssp.drivers.castaway._read_body:141 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-02-22 07:09:24
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway\10M100491_20120222_070924_cast_away.csv
- Sensor Type: 3
- Probe Type: 3
- Driver: CST.0.2.0
- Samples: 80
0.15 1489.10 9.73 35.20
0.45 1489.11 9.74 35.17
0.75 1489.09 9.73 35.17
1.04 1489.02 9.72 35.15
1.34 1489.00 9.72 35.13
.... .... .... .... ....
23.76 1489.70 9.79 35.19
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-02-22 07:09:24
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway\10M100491_20120222_070924_cast_away.csv
- Sensor Type: 3
- Probe Type: 3
- Driver: CST.0.2.0
- Samples: 80
0.15 1489.10 9.73 35.20
0.45 1489.11 9.74 35.17
0.75 1489.09 9.73 35.17
1.04 1489.02 9.72 35.15
1.34 1489.00 9.72 35.13
.... .... .... .... ....
23.76 1489.70 9.79 35.19
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 80)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 80)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:testing IDRONAUT (txt)
DEBUG hydroffice.ssp.cast_reader.test_drivers:78 > testing IDRONAUT (txt)
DEBUG:hydroffice.ssp.cast_reader:reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\idronaut
DEBUG hydroffice.ssp.cast_reader.test_drivers:89 > reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\idronaut
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\idronaut file in the data folder: 1
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\idronaut file in the data folder: 1
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\idronaut\Campagna_2013001.TXT [1]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\idronaut\Campagna_2013001.TXT [1]
INFO:hydroffice.ssp.drivers.idronaut:reading ...
INFO hydroffice.ssp.drivers.idronaut.__init__:21 > reading ...
INFO:hydroffice.ssp.drivers.idronaut:reading > header
INFO hydroffice.ssp.drivers.idronaut._read_header:32 > reading > header
INFO:hydroffice.ssp.drivers.idronaut:first 'cast' line: 2
INFO hydroffice.ssp.drivers.idronaut._read_header:60 > first 'cast' line: 2
INFO:hydroffice.ssp.drivers.idronaut:lat: 36.2580986111
INFO hydroffice.ssp.drivers.idronaut._read_header:121 > lat: 36.2580986111
INFO:hydroffice.ssp.drivers.idronaut:long: 12.9431086111
INFO hydroffice.ssp.drivers.idronaut._read_header:138 > long: 12.9431086111
INFO:hydroffice.ssp.drivers.idronaut:samples offset: 10
INFO hydroffice.ssp.drivers.idronaut._read_header:82 > samples offset: 10
INFO:hydroffice.ssp.drivers.idronaut:probe_type: 4
INFO hydroffice.ssp.drivers.idronaut._read_header:162 > probe_type: 4
INFO:hydroffice.ssp.drivers.idronaut:sensor type: 3
INFO hydroffice.ssp.drivers.idronaut._read_header:170 > sensor type: 3
INFO:hydroffice.ssp.drivers.idronaut:reading > body
INFO hydroffice.ssp.drivers.idronaut._read_body:173 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2013-06-14 18:52:11
- Position: 12.9431086111 36.2580986111
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\idronaut\Campagna_2013001.TXT
- Sensor Type: 3
- Probe Type: 4
- Driver: IDR.0.2.0
- Samples: 264
1.00 1525.78 20.49 37.65
2.00 1525.24 20.29 37.65
3.00 1525.14 20.25 37.65
4.00 1525.02 20.20 37.66
5.00 1525.06 20.21 37.66
.... .... .... .... ....
264.00 1513.49 14.36 38.85
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2013-06-14 18:52:11
- Position: 12.9431086111 36.2580986111
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\idronaut\Campagna_2013001.TXT
- Sensor Type: 3
- Probe Type: 4
- Driver: IDR.0.2.0
- Samples: 264
1.00 1525.78 20.49 37.65
2.00 1525.24 20.29 37.65
3.00 1525.14 20.25 37.65
4.00 1525.02 20.20 37.66
5.00 1525.06 20.21 37.66
.... .... .... .... ....
264.00 1513.49 14.36 38.85
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 264)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 264)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:testing VALEPORT_MONITOR (000)
DEBUG hydroffice.ssp.cast_reader.test_drivers:78 > testing VALEPORT_MONITOR (000)
DEBUG:hydroffice.ssp.cast_reader:reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\monitor
DEBUG hydroffice.ssp.cast_reader.test_drivers:89 > reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\monitor
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\monitor file in the data folder: 1
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\monitor file in the data folder: 1
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\monitor\FILE12_valeport.000 [10]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\monitor\FILE12_valeport.000 [10]
INFO:hydroffice.ssp.drivers.valeport:reading ...
INFO hydroffice.ssp.drivers.valeport.__init__:34 > reading ...
INFO:hydroffice.ssp.drivers.valeport:reading > header
INFO hydroffice.ssp.drivers.valeport._read_header:41 > reading > header
INFO:hydroffice.ssp.drivers.valeport:probe type: 20
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:142 > probe type: 20
INFO:hydroffice.ssp.drivers.valeport:sensor type: 7
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:149 > sensor type: 7
INFO:hydroffice.ssp.drivers.valeport:filename: UNKNOWN
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:135 > filename: UNKNOWN
INFO:hydroffice.ssp.drivers.valeport:time: 2012-02-22 07:11:49
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:128 > time: 2012-02-22 07:11:49
INFO:hydroffice.ssp.drivers.valeport:total samples: 948
INFO hydroffice.ssp.drivers.valeport.parse_midas_header:157 > total samples: 948
INFO:hydroffice.ssp.drivers.valeport:reading > body
INFO hydroffice.ssp.drivers.valeport._read_body:165 > reading > body
INFO:hydroffice.ssp.drivers.valeport:skipped 849 lines with null sound speed
INFO hydroffice.ssp.drivers.valeport.parse_midas_body:220 > skipped 849 lines with null sound speed
INFO:hydroffice.ssp.drivers.valeport:number of samples: 99
INFO hydroffice.ssp.drivers.valeport._read_body:171 > number of samples: 99
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-02-22 07:11:49
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\monitor\FILE12_valeport.000
- Sensor Type: 7
- Probe Type: 20
- Driver: VAL.MIDAS.0.2.0
- Samples: 99
0.46 1489.52 9.90 0.00
0.44 1489.29 9.73 0.00
0.44 1489.23 9.72 0.00
0.44 1489.14 9.72 0.00
0.44 1489.13 9.71 0.00
.... .... .... .... ....
0.11 1488.80 9.71 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-02-22 07:11:49
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\monitor\FILE12_valeport.000
- Sensor Type: 7
- Probe Type: 20
- Driver: VAL.MIDAS.0.2.0
- Samples: 99
0.46 1489.52 9.90 0.00
0.44 1489.29 9.73 0.00
0.44 1489.23 9.72 0.00
0.44 1489.14 9.72 0.00
0.44 1489.13 9.71 0.00
.... .... .... .... ....
0.11 1488.80 9.71 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 99)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 99)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:testing SIPPICAN (edf)
DEBUG hydroffice.ssp.cast_reader.test_drivers:78 > testing SIPPICAN (edf)
DEBUG:hydroffice.ssp.cast_reader:reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican
DEBUG hydroffice.ssp.cast_reader.test_drivers:89 > reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican file in the data folder: 13
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican file in the data folder: 13
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\C3_00172.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\C3_00172.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 10 / 21 / 2012
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 10 / 21 / 2012
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 1 : 39 : 22
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 1 : 39 : 22
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 71.6977701667
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 71.6977701667
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 155.092529333
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 155.092529333
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 6
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 6
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: Files\Sippican\WinMK21\DATA\C3_00172.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: Files\Sippican\WinMK21\DATA\C3_00172.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 61
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 61
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 2931
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 2931
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 6
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 6
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-10-21 01:39:22
- Position: -155.092529333 71.6977701667
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\C3_00172.EDF
- Sensor Type: 6
- Probe Type: 17
- Driver: SPC.0.2.0
- Samples: 1465
0.00 1444.88 1.76 25.75
0.10 1447.77 1.84 27.67
0.30 1448.23 1.89 27.85
0.40 1448.98 1.91 28.35
0.50 1449.36 1.93 28.57
.... .... .... .... ....
199.00 1435.22 -1.05 25.93
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-10-21 01:39:22
- Position: -155.092529333 71.6977701667
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\C3_00172.EDF
- Sensor Type: 6
- Probe Type: 17
- Driver: SPC.0.2.0
- Samples: 1465
0.00 1444.88 1.76 25.75
0.10 1447.77 1.84 27.67
0.30 1448.23 1.89 27.85
0.40 1448.98 1.91 28.35
0.50 1449.36 1.93 28.57
.... .... .... .... ....
199.00 1435.22 -1.05 25.93
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1465)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1465)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\C4_00003.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\C4_00003.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 8 / 27 / 2012
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 8 / 27 / 2012
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 16 : 12 : 57
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 16 : 12 : 57
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 74.2347818333
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 74.2347818333
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 157.895752
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 157.895752
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 6
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 6
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: Files\Sippican\WinMK21\DATA\C4_00003.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: Files\Sippican\WinMK21\DATA\C4_00003.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 31
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 31
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 14175
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 14175
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 6
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 6
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-08-27 16:12:57
- Position: -157.895752 74.2347818333
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\C4_00003.EDF
- Sensor Type: 6
- Probe Type: 18
- Driver: SPC.0.2.0
- Samples: 14175
0.00 1437.95 2.75 16.99
0.10 1441.52 1.86 22.82
0.30 1440.15 1.35 23.53
0.40 1439.64 1.06 24.16
0.60 1439.31 0.90 24.49
.... .... .... .... ....
1850.10 1477.88 -0.39 34.94
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-08-27 16:12:57
- Position: -157.895752 74.2347818333
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\C4_00003.EDF
- Sensor Type: 6
- Probe Type: 18
- Driver: SPC.0.2.0
- Samples: 14175
0.00 1437.95 2.75 16.99
0.10 1441.52 1.86 22.82
0.30 1440.15 1.35 23.53
0.40 1439.64 1.06 24.16
0.60 1439.31 0.90 24.49
.... .... .... .... ....
1850.10 1477.88 -0.39 34.94
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 14175)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 14175)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\EX1105_XBT40_110902.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\EX1105_XBT40_110902.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 9 / 2 / 2011
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 9 / 2 / 2011
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 23 : 35 : 54
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 23 : 35 : 54
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 26.477002
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 26.477002
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 84.9877603333
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 84.9877603333
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: Data\EX1105\XBT\TD_00040.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: Data\EX1105\XBT\TD_00040.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 32.2
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:139 > salinity: 32.2
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 36
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 36
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 1184
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 1184
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2011-09-02 23:35:54
- Position: -84.9877603333 26.477002
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\EX1105_XBT40_110902.EDF
- Sensor Type: 4
- Probe Type: 8
- Driver: SPC.0.2.0
- Samples: 1184
0.00 1540.74 29.08 32.20
0.70 1542.27 29.80 32.20
1.30 1542.72 30.01 32.20
2.00 1542.86 30.07 32.20
2.70 1542.91 30.09 32.20
.... .... .... .... ....
760.10 1483.93 6.06 32.20
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2011-09-02 23:35:54
- Position: -84.9877603333 26.477002
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\EX1105_XBT40_110902.EDF
- Sensor Type: 4
- Probe Type: 8
- Driver: SPC.0.2.0
- Samples: 1184
0.00 1540.74 29.08 32.20
0.70 1542.27 29.80 32.20
1.30 1542.72 30.01 32.20
2.00 1542.86 30.07 32.20
2.70 1542.91 30.09 32.20
.... .... .... .... ....
760.10 1483.93 6.06 32.20
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1184)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1184)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\S2_00174.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\S2_00174.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 11 / 8 / 2007
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 11 / 8 / 2007
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 6 : 43 : 11
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 6 : 43 : 11
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 19.5199523333
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 19.5199523333
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 153.975293
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 153.975293
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 5
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 5
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: Files\Sippican\WinMK21\DATA\S2_00174.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: Files\Sippican\WinMK21\DATA\S2_00174.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 30
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 30
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 4002
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 4002
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 5
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 5
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2007-11-08 06:43:11
- Position: -153.975293 19.5199523333
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\S2_00174.EDF
- Sensor Type: 5
- Probe Type: 16
- Driver: SPC.0.2.0
- Samples: 4002
0.00 1530.13 0.00 0.00
0.60 1524.53 0.00 0.00
1.10 1560.00 0.00 0.00
1.70 1526.66 0.00 0.00
2.20 1533.66 0.00 0.00
.... .... .... .... ....
2000.10 1493.31 0.00 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2007-11-08 06:43:11
- Position: -153.975293 19.5199523333
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\S2_00174.EDF
- Sensor Type: 5
- Probe Type: 16
- Driver: SPC.0.2.0
- Samples: 4002
0.00 1530.13 0.00 0.00
0.60 1524.53 0.00 0.00
1.10 1560.00 0.00 0.00
1.70 1526.66 0.00 0.00
2.20 1533.66 0.00 0.00
.... .... .... .... ....
2000.10 1493.31 0.00 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 4002)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 4002)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T0_00532.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T0_00532.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 4 / 16 / 2010
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 4 / 16 / 2010
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 15 : 54 : 24
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 15 : 54 : 24
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 14.6555
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 14.6555
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 144.785
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 144.785
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: FILES\SIPPICAN\WINMK21\DATA\T0_00532.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: FILES\SIPPICAN\WINMK21\DATA\T0_00532.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 34.7
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:139 > salinity: 34.7
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 32
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 32
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 322
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 322
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2010-04-16 15:54:24
- Position: -144.785 14.6555
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T0_00532.EDF
- Sensor Type: 4
- Probe Type: 9
- Driver: SPC.0.2.0
- Samples: 322
0.00 1537.63 26.51 34.70
0.60 1539.65 27.39 34.70
1.30 1540.11 27.59 34.70
1.90 1540.18 27.62 34.70
2.50 1540.19 27.62 34.70
.... .... .... .... ....
200.00 1526.18 20.63 34.70
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2010-04-16 15:54:24
- Position: -144.785 14.6555
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T0_00532.EDF
- Sensor Type: 4
- Probe Type: 9
- Driver: SPC.0.2.0
- Samples: 322
0.00 1537.63 26.51 34.70
0.60 1539.65 27.39 34.70
1.30 1540.11 27.59 34.70
1.90 1540.18 27.62 34.70
2.50 1540.19 27.62 34.70
.... .... .... .... ....
200.00 1526.18 20.63 34.70
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 322)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 322)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T1_00510.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T1_00510.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 2 / 2 / 2010
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 2 / 2 / 2010
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 15 : 41 : 44
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 15 : 41 : 44
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 14.6555
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 14.6555
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 144.785
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 144.785
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: FILES\SIPPICAN\WINMK21\DATA\T1_00510.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: FILES\SIPPICAN\WINMK21\DATA\T1_00510.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 32.5
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:139 > salinity: 32.5
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 32
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 32
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 2693
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 2693
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2010-02-02 15:41:44
- Position: -144.785 14.6555
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T1_00510.EDF
- Sensor Type: 4
- Probe Type: 10
- Driver: SPC.0.2.0
- Samples: 2693
0.00 1513.25 18.11 32.50
0.20 1495.89 12.60 32.50
0.40 1492.55 11.63 32.50
0.50 1491.49 11.32 32.50
0.70 1491.20 11.24 32.50
.... .... .... .... ....
460.10 1561.35 35.50 32.50
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2010-02-02 15:41:44
- Position: -144.785 14.6555
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T1_00510.EDF
- Sensor Type: 4
- Probe Type: 10
- Driver: SPC.0.2.0
- Samples: 2693
0.00 1513.25 18.11 32.50
0.20 1495.89 12.60 32.50
0.40 1492.55 11.63 32.50
0.50 1491.49 11.32 32.50
0.70 1491.20 11.24 32.50
.... .... .... .... ....
460.10 1561.35 35.50 32.50
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 2693)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 2693)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T4_00080.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T4_00080.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 3 / 17 / 2007
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 3 / 17 / 2007
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 18 : 57 : 20
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 18 : 57 : 20
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: -15.5451436667
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: -15.5451436667
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 153.977848333
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 153.977848333
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: Files\Sippican\WinMK21\DATA\T4_00080.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: Files\Sippican\WinMK21\DATA\T4_00080.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 36.2
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:139 > salinity: 36.2
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 32
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 32
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 730
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 730
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2007-03-17 18:57:20
- Position: 153.977848333 -15.5451436667
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T4_00080.EDF
- Sensor Type: 4
- Probe Type: 11
- Driver: SPC.0.2.0
- Samples: 730
0.00 1541.00 27.29 36.20
0.60 1543.04 28.21 36.20
1.30 1544.19 28.73 36.20
1.90 1544.54 28.89 36.20
2.60 1544.65 28.94 36.20
.... .... .... .... ....
460.30 1497.31 9.57 36.20
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2007-03-17 18:57:20
- Position: 153.977848333 -15.5451436667
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T4_00080.EDF
- Sensor Type: 4
- Probe Type: 11
- Driver: SPC.0.2.0
- Samples: 730
0.00 1541.00 27.29 36.20
0.60 1543.04 28.21 36.20
1.30 1544.19 28.73 36.20
1.90 1544.54 28.89 36.20
2.60 1544.65 28.94 36.20
.... .... .... .... ....
460.30 1497.31 9.57 36.20
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 730)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 730)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T5_00014a.edf [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T5_00014a.edf [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 7 / 27 / 2011
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 7 / 27 / 2011
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 19 : 24 : 33
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 19 : 24 : 33
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 43.060197
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 43.060197
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 6.73769233333
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 6.73769233333
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: Z:\essnaut\celerite\T5_00014.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: Z:\essnaut\celerite\T5_00014.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 38.0
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:139 > salinity: 38.0
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 40
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 40
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 1104
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 1104
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2011-07-27 19:24:33
- Position: 6.73769233333 43.060197
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T5_00014a.edf
- Sensor Type: 4
- Probe Type: 12
- Driver: SPC.0.2.0
- Samples: 1104
0.00 1531.73 22.61 38.00
0.70 1531.46 22.50 38.00
1.40 1531.40 22.47 38.00
2.00 1531.30 22.43 38.00
2.70 1531.29 22.42 38.00
.... .... .... .... ....
731.00 1517.32 13.45 38.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2011-07-27 19:24:33
- Position: 6.73769233333 43.060197
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T5_00014a.edf
- Sensor Type: 4
- Probe Type: 12
- Driver: SPC.0.2.0
- Samples: 1104
0.00 1531.73 22.61 38.00
0.70 1531.46 22.50 38.00
1.40 1531.40 22.47 38.00
2.00 1531.30 22.43 38.00
2.70 1531.29 22.42 38.00
.... .... .... .... ....
731.00 1517.32 13.45 38.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1104)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1104)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T5_00386.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T5_00386.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 5 / 31 / 2009
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 5 / 31 / 2009
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 18 : 23 : 28
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 18 : 23 : 28
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: invalid
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:110 > lat: invalid
INFO:hydroffice.ssp.drivers.sippican.sippican:long: invalid
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:127 > long: invalid
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: Files\Sippican\WinMK21\Data\T5_00386.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: Files\Sippican\WinMK21\Data\T5_00386.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 35.15
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:139 > salinity: 35.15
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 32
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 32
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 2907
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 2907
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2009-05-31 18:23:28
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T5_00386.EDF
- Sensor Type: 4
- Probe Type: 12
- Driver: SPC.0.2.0
- Samples: 2907
0.00 1545.38 29.82 35.15
0.70 1544.94 29.61 35.15
1.40 1544.80 29.53 35.15
2.00 1544.76 29.51 35.15
2.70 1544.74 29.49 35.15
.... .... .... .... ....
1830.50 1587.14 35.50 35.15
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2009-05-31 18:23:28
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T5_00386.EDF
- Sensor Type: 4
- Probe Type: 12
- Driver: SPC.0.2.0
- Samples: 2907
0.00 1545.38 29.82 35.15
0.70 1544.94 29.61 35.15
1.40 1544.80 29.53 35.15
2.00 1544.76 29.51 35.15
2.70 1544.74 29.49 35.15
.... .... .... .... ....
1830.50 1587.14 35.50 35.15
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 2907)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 2907)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T7_00007.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T7_00007.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 3 / 22 / 2011
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 3 / 22 / 2011
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 13 : 27 : 58
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 13 : 27 : 58
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 42.7489908333
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 42.7489908333
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 5.7246725
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 5.7246725
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: M:\T7_00007.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: M:\T7_00007.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 38.0
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:139 > salinity: 38.0
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 33
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 33
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 1580
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 1580
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2011-03-22 13:27:58
- Position: 5.7246725 42.7489908333
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T7_00007.EDF
- Sensor Type: 4
- Probe Type: 14
- Driver: SPC.0.2.0
- Samples: 1580
0.00 1510.71 15.17 38.00
0.70 1506.47 13.83 38.00
1.30 1505.04 13.39 38.00
2.00 1504.65 13.27 38.00
2.70 1504.55 13.23 38.00
.... .... .... .... ....
1000.40 1501.13 7.58 38.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2011-03-22 13:27:58
- Position: 5.7246725 42.7489908333
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T7_00007.EDF
- Sensor Type: 4
- Probe Type: 14
- Driver: SPC.0.2.0
- Samples: 1580
0.00 1510.71 15.17 38.00
0.70 1506.47 13.83 38.00
1.30 1505.04 13.39 38.00
2.00 1504.65 13.27 38.00
2.70 1504.55 13.23 38.00
.... .... .... .... ....
1000.40 1501.13 7.58 38.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1580)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1580)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T7_00070.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T7_00070.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 3 / 12 / 2007
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 3 / 12 / 2007
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 23 : 32 : 2
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 23 : 32 : 2
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: -21.19729
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: -21.19729
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 150.124446667
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 150.124446667
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: Files\Sippican\WinMK21\DATA\T7_00070.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: Files\Sippican\WinMK21\DATA\T7_00070.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 37.0
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:139 > salinity: 37.0
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 32
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 32
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 1226
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 1226
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2007-03-12 23:32:02
- Position: 150.124446667 -21.19729
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T7_00070.EDF
- Sensor Type: 4
- Probe Type: 14
- Driver: SPC.0.2.0
- Samples: 1226
0.00 1541.41 27.09 37.00
0.60 1542.00 27.35 37.00
1.30 1542.48 27.56 37.00
1.90 1542.55 27.59 37.00
2.60 1542.56 27.59 37.00
.... .... .... .... ....
760.40 1570.92 35.50 37.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2007-03-12 23:32:02
- Position: 150.124446667 -21.19729
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T7_00070.EDF
- Sensor Type: 4
- Probe Type: 14
- Driver: SPC.0.2.0
- Samples: 1226
0.00 1541.41 27.09 37.00
0.60 1542.00 27.35 37.00
1.30 1542.48 27.56 37.00
1.90 1542.55 27.59 37.00
2.60 1542.56 27.59 37.00
.... .... .... .... ....
760.40 1570.92 35.50 37.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1226)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1226)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\TD_00822.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\TD_00822.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 12 / 4 / 2011
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 12 / 4 / 2011
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 16 : 42 : 18
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 16 : 42 : 18
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: -9.15148333333
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: -9.15148333333
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 169.198
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 169.198
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: FILES\SIPPICAN\WINMK21\DATA\TD_00822.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: FILES\SIPPICAN\WINMK21\DATA\TD_00822.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 36.25
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:139 > salinity: 36.25
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 32
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 32
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 1226
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 1226
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2011-12-04 16:42:18
- Position: -169.198 -9.15148333333
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\TD_00822.EDF
- Sensor Type: 4
- Probe Type: 8
- Driver: SPC.0.2.0
- Samples: 1226
0.00 1541.94 27.69 36.25
0.60 1543.34 28.32 36.25
1.30 1543.79 28.52 36.25
1.90 1543.94 28.58 36.25
2.60 1543.99 28.60 36.25
.... .... .... .... ....
760.40 1483.79 4.74 36.25
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2011-12-04 16:42:18
- Position: -169.198 -9.15148333333
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\TD_00822.EDF
- Sensor Type: 4
- Probe Type: 8
- Driver: SPC.0.2.0
- Samples: 1226
0.00 1541.94 27.69 36.25
0.60 1543.34 28.32 36.25
1.30 1543.79 28.52 36.25
1.90 1543.94 28.58 36.25
2.60 1543.99 28.60 36.25
.... .... .... .... ....
760.40 1483.79 4.74 36.25
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1226)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1226)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\TD_00831.edf [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\TD_00831.edf [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 3 / 22 / 2012
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 3 / 22 / 2012
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 3 : 1 : 1
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 3 : 1 : 1
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 22.0645433333
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 22.0645433333
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 157.058316667
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 157.058316667
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: Files\Sippican\WinMK21\Data\TD_00831.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: Files\Sippican\WinMK21\Data\TD_00831.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 34.96
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:139 > salinity: 34.96
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 33
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 33
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 1226
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 1226
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-03-22 03:01:01
- Position: -157.058316667 22.0645433333
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\TD_00831.edf
- Sensor Type: 4
- Probe Type: 8
- Driver: SPC.0.2.0
- Samples: 1226
0.00 1530.49 23.43 34.96
0.60 1530.70 23.51 34.96
1.30 1530.77 23.53 34.96
1.90 1530.79 23.54 34.96
2.60 1530.80 23.54 34.96
.... .... .... .... ....
760.40 1483.26 5.02 34.96
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-03-22 03:01:01
- Position: -157.058316667 22.0645433333
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\TD_00831.edf
- Sensor Type: 4
- Probe Type: 8
- Driver: SPC.0.2.0
- Samples: 1226
0.00 1530.49 23.43 34.96
0.60 1530.70 23.51 34.96
1.30 1530.77 23.53 34.96
1.90 1530.79 23.54 34.96
2.60 1530.80 23.54 34.96
.... .... .... .... ....
760.40 1483.26 5.02 34.96
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1226)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1226)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2 file in the data folder: 3
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2 file in the data folder: 3
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T0_00005.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T0_00005.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: Martin\WinMK21\DATA\T0_00005.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: Martin\WinMK21\DATA\T0_00005.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 10 / 16 / 2011
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 10 / 16 / 2011
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 9 : 14 : 43
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 9 : 14 : 43
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: invalid
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:110 > lat: invalid
INFO:hydroffice.ssp.drivers.sippican.sippican:long: invalid
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:127 > long: invalid
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 38.0 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:148 > salinity: 38.0 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 0 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 0 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 1 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 1 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 2 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 2 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 3 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 3 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 4 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 4 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 37 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:76 > samples offset: 37 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 322
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 322
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: True
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: True
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2011-10-16 09:14:43
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T0_00005.EDF
- Sensor Type: 4
- Probe Type: 9
- Driver: SPC.0.2.0
- Samples: 322
0.00 1525.72 20.33 38.00
0.63 1525.53 20.25 38.00
1.26 1525.49 20.24 38.00
1.89 1525.49 20.23 38.00
2.52 1525.49 20.23 38.00
.... .... .... .... ....
200.04 1508.91 13.57 38.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2011-10-16 09:14:43
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T0_00005.EDF
- Sensor Type: 4
- Probe Type: 9
- Driver: SPC.0.2.0
- Samples: 322
0.00 1525.72 20.33 38.00
0.63 1525.53 20.25 38.00
1.26 1525.49 20.24 38.00
1.89 1525.49 20.23 38.00
2.52 1525.49 20.23 38.00
.... .... .... .... ....
200.04 1508.91 13.57 38.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 322)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 322)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T5_00003-salinity-38.edf [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T5_00003-salinity-38.edf [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: Martin\WinMK21\DATA\T5_00003.RDF.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: Martin\WinMK21\DATA\T5_00003.RDF.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 3 / 22 / 2011
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 3 / 22 / 2011
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 7 : 31 : 24
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 7 : 31 : 24
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 42.785026
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 42.785026
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 5.73388366667
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 5.73388366667
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 38.0 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:148 > salinity: 38.0 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 0 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 0 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 1 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 1 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 2 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 2 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 3 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 3 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 4 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 4 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 36 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:76 > samples offset: 36 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 2907
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 2907
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: True
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: True
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2011-03-22 07:31:24
- Position: 5.73388366667 42.785026
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T5_00003-salinity-38.edf
- Sensor Type: 4
- Probe Type: 13
- Driver: SPC.0.2.0
- Samples: 2907
0.00 1506.39 13.81 38.00
0.68 1505.00 13.38 38.00
1.37 1504.67 13.27 38.00
2.05 1504.56 13.24 38.00
2.73 1504.54 13.23 38.00
.... .... .... .... ....
1830.52 1536.07 13.61 38.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2011-03-22 07:31:24
- Position: 5.73388366667 42.785026
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T5_00003-salinity-38.edf
- Sensor Type: 4
- Probe Type: 13
- Driver: SPC.0.2.0
- Samples: 2907
0.00 1506.39 13.81 38.00
0.68 1505.00 13.38 38.00
1.37 1504.67 13.27 38.00
2.05 1504.56 13.24 38.00
2.73 1504.54 13.23 38.00
.... .... .... .... ....
1830.52 1536.07 13.61 38.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 2907)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 2907)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T5_00003.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T5_00003.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: M:\T5_00003.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: M:\T5_00003.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 3 / 22 / 2011
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 3 / 22 / 2011
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 7 : 31 : 24
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 7 : 31 : 24
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 42.785026
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 42.785026
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 5.73388366667
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 5.73388366667
INFO:hydroffice.ssp.drivers.sippican.sippican:salinity: 30.0 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:148 > salinity: 30.0 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 0 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 0 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 1 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 1 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 2 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 2 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 3 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 3 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:data index: 4 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:166 > data index: 4 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 36 [var alpha]
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:76 > samples offset: 36 [var alpha]
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 2907
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 2907
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 4
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 4
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: True
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: True
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2011-03-22 07:31:24
- Position: 5.73388366667 42.785026
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T5_00003.EDF
- Sensor Type: 4
- Probe Type: 12
- Driver: SPC.0.2.0
- Samples: 2907
0.00 1496.98 13.81 30.00
0.68 1495.56 13.38 30.00
1.37 1495.21 13.27 30.00
2.05 1495.10 13.24 30.00
2.73 1495.07 13.23 30.00
.... .... .... .... ....
1830.52 1526.63 13.61 30.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2011-03-22 07:31:24
- Position: 5.73388366667 42.785026
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T5_00003.EDF
- Sensor Type: 4
- Probe Type: 12
- Driver: SPC.0.2.0
- Samples: 2907
0.00 1496.98 13.81 30.00
0.68 1495.56 13.38 30.00
1.37 1495.21 13.27 30.00
2.05 1495.10 13.24 30.00
2.73 1495.07 13.23 30.00
.... .... .... .... ....
1830.52 1526.63 13.61 30.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 2907)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 2907)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth file in the data folder: 3
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth file in the data folder: 3
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\C3_00010.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\C3_00010.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 8 / 1 / 2015
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 8 / 1 / 2015
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 2 : 0 : 15
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 2 : 0 : 15
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 37.551477
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 37.551477
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 70.87854
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 70.87854
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 6
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 6
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: C:\mk21data\MGL1512\C3_00010.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: C:\mk21data\MGL1512\C3_00010.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 32
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 32
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 9985
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 9985
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 6
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 6
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.drivers.sippican.sippican:skipping 0-speed row
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:244 > skipping 0-speed row
INFO:hydroffice.ssp.drivers.sippican.sippican:skipping 0-speed row
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:244 > skipping 0-speed row
INFO:hydroffice.ssp.drivers.sippican.sippican:skipping 0-speed row
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:244 > skipping 0-speed row
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2015-08-01 02:00:15
- Position: -70.87854 37.551477
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\C3_00010.EDF
- Sensor Type: 6
- Probe Type: 17
- Driver: SPC.0.2.0
- Samples: 9982
0.96 1542.59 28.88 34.38
1.10 1542.95 28.92 34.63
1.24 1543.27 28.95 34.87
1.38 1543.58 28.97 35.12
1.51 1543.90 28.98 35.41
.... .... .... .... ....
1681.12 1476.82 0.00 34.94
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2015-08-01 02:00:15
- Position: -70.87854 37.551477
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\C3_00010.EDF
- Sensor Type: 6
- Probe Type: 17
- Driver: SPC.0.2.0
- Samples: 9982
0.96 1542.59 28.88 34.38
1.10 1542.95 28.92 34.63
1.24 1543.27 28.95 34.87
1.38 1543.58 28.97 35.12
1.51 1543.90 28.98 35.41
.... .... .... .... ....
1681.12 1476.82 0.00 34.94
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 9982)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 9982)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\C3_00011.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\C3_00011.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 8 / 1 / 2015
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 8 / 1 / 2015
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 2 : 13 : 33
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 2 : 13 : 33
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 37.546517
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 37.546517
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 70.8682698333
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 70.8682698333
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 6
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 6
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: C:\mk21data\MGL1512\C3_00011.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: C:\mk21data\MGL1512\C3_00011.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 32
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 32
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 7716
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 7716
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 6
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 6
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.drivers.sippican.sippican:skipping 0-speed row
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:244 > skipping 0-speed row
INFO:hydroffice.ssp.drivers.sippican.sippican:skipping 0-speed row
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:244 > skipping 0-speed row
INFO:hydroffice.ssp.drivers.sippican.sippican:skipping 0-speed row
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:244 > skipping 0-speed row
INFO:hydroffice.ssp.drivers.sippican.sippican:skipping 0-speed row
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:244 > skipping 0-speed row
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2015-08-01 02:13:33
- Position: -70.8682698333 37.546517
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\C3_00011.EDF
- Sensor Type: 6
- Probe Type: 17
- Driver: SPC.0.2.0
- Samples: 7712
0.96 1543.80 28.87 35.55
1.10 1544.05 28.89 35.75
1.24 1544.19 28.90 35.86
1.38 1544.29 28.91 35.94
1.51 1544.35 28.91 35.98
.... .... .... .... ....
1543.69 1488.73 0.00 45.39
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2015-08-01 02:13:33
- Position: -70.8682698333 37.546517
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\C3_00011.EDF
- Sensor Type: 6
- Probe Type: 17
- Driver: SPC.0.2.0
- Samples: 7712
0.96 1543.80 28.87 35.55
1.10 1544.05 28.89 35.75
1.24 1544.19 28.90 35.86
1.38 1544.29 28.91 35.94
1.51 1544.35 28.91 35.98
.... .... .... .... ....
1543.69 1488.73 0.00 45.39
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 7712)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 7712)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\S1_00008.EDF [5]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\S1_00008.EDF [5]
INFO:hydroffice.ssp.drivers.sippican.sippican:reading ...
INFO hydroffice.ssp.drivers.sippican.sippican.__init__:36 > reading ...
INFO:hydroffice.ssp.drivers.sippican.sippican:reading Sippican > header
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:44 > reading Sippican > header
INFO:hydroffice.ssp.drivers.sippican.sippican:date: 8 / 1 / 2015
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:85 > date: 8 / 1 / 2015
INFO:hydroffice.ssp.drivers.sippican.sippican:time: 1 : 46 : 18
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:93 > time: 1 : 46 : 18
INFO:hydroffice.ssp.drivers.sippican.sippican:lat: 37.5770751667
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:105 > lat: 37.5770751667
INFO:hydroffice.ssp.drivers.sippican.sippican:long: 70.9050781667
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:120 > long: 70.9050781667
INFO:hydroffice.ssp.drivers.sippican.sippican:probe type: 5
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:154 > probe type: 5
INFO:hydroffice.ssp.drivers.sippican.sippican:filename: C:\mk21data\MGL1512\S1_00008.RDF
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:131 > filename: C:\mk21data\MGL1512\S1_00008.RDF
INFO:hydroffice.ssp.drivers.sippican.sippican:samples offset: 32
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:69 > samples offset: 32
INFO:hydroffice.ssp.drivers.sippican.sippican:max samples: 1650
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:173 > max samples: 1650
INFO:hydroffice.ssp.drivers.sippican.sippican:sensor type: 5
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:183 > sensor type: 5
INFO:hydroffice.ssp.drivers.sippican.sippican:var alpha: False
INFO hydroffice.ssp.drivers.sippican.sippican._read_header:184 > var alpha: False
INFO:hydroffice.ssp.drivers.sippican.sippican:reading > body
INFO hydroffice.ssp.drivers.sippican.sippican._read_body:187 > reading > body
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2015-08-01 01:46:18
- Position: -70.9050781667 37.5770751667
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\S1_00008.EDF
- Sensor Type: 5
- Probe Type: 15
- Driver: SPC.0.2.0
- Samples: 1650
3.80 1544.75 0.00 0.00
4.30 1544.87 0.00 0.00
4.80 1544.89 0.00 0.00
5.40 1544.90 0.00 0.00
5.90 1544.93 0.00 0.00
.... .... .... .... ....
848.30 1486.44 0.00 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2015-08-01 01:46:18
- Position: -70.9050781667 37.5770751667
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\S1_00008.EDF
- Sensor Type: 5
- Probe Type: 15
- Driver: SPC.0.2.0
- Samples: 1650
3.80 1544.75 0.00 0.00
4.30 1544.87 0.00 0.00
4.80 1544.89 0.00 0.00
5.40 1544.90 0.00 0.00
5.90 1544.93 0.00 0.00
.... .... .... .... ....
848.30 1486.44 0.00 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1650)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1650)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:testing TURO (nc)
DEBUG hydroffice.ssp.cast_reader.test_drivers:78 > testing TURO (nc)
DEBUG:hydroffice.ssp.cast_reader:reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\turo
DEBUG hydroffice.ssp.cast_reader.test_drivers:89 > reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\turo
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\turo file in the data folder: 1
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\turo file in the data folder: 1
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\turo\FK001_XBT001_may6.nc [7]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\turo\FK001_XBT001_may6.nc [7]
INFO:hydroffice.ssp.drivers.turo:reading ...
INFO hydroffice.ssp.drivers.turo.__init__:21 > reading ...
INFO:hydroffice.ssp.drivers.turo:reading > header
INFO hydroffice.ssp.drivers.turo._read_header:27 > reading > header
INFO:hydroffice.ssp.drivers.turo:time: 2012-05-06 16:21:51
INFO hydroffice.ssp.drivers.turo._read_header:36 > time: 2012-05-06 16:21:51
INFO:hydroffice.ssp.drivers.turo:latitude: 58.3
INFO hydroffice.ssp.drivers.turo._read_header:39 > latitude: 58.3
INFO:hydroffice.ssp.drivers.turo:longitude: 9.25
INFO hydroffice.ssp.drivers.turo._read_header:42 > longitude: 9.25
INFO:hydroffice.ssp.drivers.turo:probe type: 7
INFO hydroffice.ssp.drivers.turo._read_header:45 > probe type: 7
INFO:hydroffice.ssp.drivers.turo:sensor type: 4
INFO hydroffice.ssp.drivers.turo._read_header:48 > sensor type: 4
INFO:hydroffice.ssp.drivers.turo:reading > body
INFO hydroffice.ssp.drivers.turo._read_body:51 > reading > body
INFO:hydroffice.ssp.drivers.turo:total samples: 1358
INFO hydroffice.ssp.drivers.turo._read_body:58 > total samples: 1358
C:\Users\gmas\AppData\Local\HyO_x64\py2\lib\site-packages\numpy\ma\core.py:4085: UserWarning: Warning: converting a masked element to nan.
warnings.warn("Warning: converting a masked element to nan.")
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2012-05-06 16:21:51
- Position: 9.25 58.3
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\turo\FK001_XBT001_may6.nc
- Sensor Type: 4
- Probe Type: 7
- Driver: TUR.0.2.0
- Samples: 1358
0.67 1482.61 9.73 0.00
1.34 1481.95 9.52 0.00
2.01 1481.85 9.45 0.00
2.68 1481.69 9.37 0.00
3.34 1481.58 9.31 0.00
.... .... .... .... ....
867.14 nan 25.72 0.00
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2012-05-06 16:21:51
- Position: 9.25 58.3
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\turo\FK001_XBT001_may6.nc
- Sensor Type: 4
- Probe Type: 7
- Driver: TUR.0.2.0
- Samples: 1358
0.67 1482.61 9.73 0.00
1.34 1481.95 9.52 0.00
2.01 1481.85 9.45 0.00
2.68 1481.69 9.37 0.00
3.34 1481.58 9.31 0.00
.... .... .... .... ....
867.14 nan 25.72 0.00
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 1358)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 1358)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
DEBUG:hydroffice.ssp.cast_reader:testing SAIV (txt)
DEBUG hydroffice.ssp.cast_reader.test_drivers:78 > testing SAIV (txt)
DEBUG:hydroffice.ssp.cast_reader:reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\saiv
DEBUG hydroffice.ssp.cast_reader.test_drivers:89 > reading test data from: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\saiv
DEBUG:hydroffice.ssp.cast_reader:found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\saiv file in the data folder: 2
DEBUG hydroffice.ssp.cast_reader._run_fmt_folder_tree:36 > found Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\saiv file in the data folder: 2
DEBUG:hydroffice.ssp.cast_reader:Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\saiv\S2.5_FG_SD008_20141104_0610.txt [2]
DEBUG hydroffice.ssp.cast_reader._run_fmt_load:55 > Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\saiv\S2.5_FG_SD008_20141104_0610.txt [2]
INFO:hydroffice.ssp.drivers.saiv:reading ...
INFO hydroffice.ssp.drivers.saiv.__init__:30 > reading ...
INFO:hydroffice.ssp.drivers.saiv:reading > header
INFO hydroffice.ssp.drivers.saiv._read_header:37 > reading > header
INFO:hydroffice.ssp.drivers.saiv:probe type: S2
INFO hydroffice.ssp.drivers.saiv._read_header:86 > probe type: S2
INFO:hydroffice.ssp.drivers.saiv:header line for fields: Ser Meas Sal. Temp Density S. vel. Press Date Time
INFO hydroffice.ssp.drivers.saiv._read_header:55 > header line for fields: Ser Meas Sal. Temp Density S. vel. Press Date Time
INFO:hydroffice.ssp.drivers.saiv:col for salinity: 2
INFO hydroffice.ssp.drivers.saiv._read_header:67 > col for salinity: 2
INFO:hydroffice.ssp.drivers.saiv:col for temperature: 3
INFO hydroffice.ssp.drivers.saiv._read_header:64 > col for temperature: 3
INFO:hydroffice.ssp.drivers.saiv:col for sound speed: 5
INFO hydroffice.ssp.drivers.saiv._read_header:70 > col for sound speed: 5
INFO:hydroffice.ssp.drivers.saiv:col for pressure: 6
INFO hydroffice.ssp.drivers.saiv._read_header:61 > col for pressure: 6
INFO:hydroffice.ssp.drivers.saiv:col for date: 7
INFO hydroffice.ssp.drivers.saiv._read_header:73 > col for date: 7
INFO:hydroffice.ssp.drivers.saiv:col for time: 8
INFO hydroffice.ssp.drivers.saiv._read_header:76 > col for time: 8
INFO:hydroffice.ssp.drivers.saiv:samples: 635
INFO hydroffice.ssp.drivers.saiv._read_header:115 > samples: 635
INFO:hydroffice.ssp.drivers.saiv:reading > body
INFO hydroffice.ssp.drivers.saiv._read_body:129 > reading > body
INFO:hydroffice.ssp.drivers.saiv:date: 4/11/2014
INFO hydroffice.ssp.drivers.saiv._read_body:150 > date: 4/11/2014
INFO:hydroffice.ssp.drivers.saiv:time: 6:4:22
INFO hydroffice.ssp.drivers.saiv._read_body:157 > time: 6:4:22
INFO:hydroffice.ssp.ssp:raw: - Date Time: 2014-11-04 06:04:22
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\saiv\S2.5_FG_SD008_20141104_0610.txt
- Sensor Type: 3
- Probe Type: 5
- Driver: SAI.0.2.0
- Samples: 635
0.00 1490.69 22.80 0.07
0.00 1490.70 22.80 0.07
0.00 1490.70 22.80 0.06
0.00 1490.70 22.80 0.06
0.00 1490.64 22.78 0.07
.... .... .... .... ....
0.00 1480.15 19.27 0.08
INFO hydroffice.ssp.ssp.read_input_file_by_format:91 > raw: - Date Time: 2014-11-04 06:04:22
- Position: None None
- Original Path: Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\saiv\S2.5_FG_SD008_20141104_0610.txt
- Sensor Type: 3
- Probe Type: 5
- Driver: SAI.0.2.0
- Samples: 635
0.00 1490.69 22.80 0.07
0.00 1490.70 22.80 0.07
0.00 1490.70 22.80 0.06
0.00 1490.70 22.80 0.06
0.00 1490.64 22.78 0.07
.... .... .... .... ....
0.00 1480.15 19.27 0.08
INFO:hydroffice.ssp.ssp:resulting processed data size: (6, 635)
INFO hydroffice.ssp.ssp.set_samples:120 > resulting processed data size: (6, 635)
INFO:hydroffice.ssp.ssp:storing raw data
INFO hydroffice.ssp.ssp.store_raw:133 > storing raw data
total casts: 48
successfully read: 48
failures: 0
> 0: 1990-07-06 08:00:00 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb\WOD_CTDO1014_3316204.unb -> samples: 2698 (driver: UNB.0.2.0)
> 1: 1992-07-28 00:00:00 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\unb\WOD_XBTO1114_4012672.unb -> samples: 97 (driver: UNB.0.2.0)
> 2: 2007-03-12 23:32:02 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T7_00070.EDF -> samples: 1226 (driver: SPC.0.2.0)
> 3: 2007-03-17 18:57:20 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T4_00080.EDF -> samples: 730 (driver: SPC.0.2.0)
> 4: 2007-11-08 06:43:11 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\S2_00174.EDF -> samples: 4002 (driver: SPC.0.2.0)
> 5: 2009-05-31 18:23:28 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T5_00386.EDF -> samples: 2907 (driver: SPC.0.2.0)
> 6: 2010-02-02 15:41:44 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T1_00510.EDF -> samples: 2693 (driver: SPC.0.2.0)
> 7: 2010-04-16 15:54:24 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T0_00532.EDF -> samples: 322 (driver: SPC.0.2.0)
> 8: 2011-03-22 07:31:24 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T5_00003-salinity-38.edf -> samples: 2907 (driver: SPC.0.2.0)
> 9: 2011-03-22 07:31:24 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T5_00003.EDF -> samples: 2907 (driver: SPC.0.2.0)
> 10: 2011-03-22 13:27:58 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T7_00007.EDF -> samples: 1580 (driver: SPC.0.2.0)
> 11: 2011-07-27 19:24:33 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\T5_00014a.edf -> samples: 1104 (driver: SPC.0.2.0)
> 12: 2011-09-02 23:35:54 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\EX1105_XBT40_110902.EDF -> samples: 1184 (driver: SPC.0.2.0)
> 13: 2011-09-21 19:45:00 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\pro\20110921SVP.txt -> samples: 26 (driver: DGP.DIGIBAR_PRO.0.2.0)
> 14: 2011-10-16 09:14:43 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\format2\T0_00005.EDF -> samples: 322 (driver: SPC.0.2.0)
> 15: 2011-11-06 20:38:24 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway\10G100412_20111106_203824.csv -> samples: 54 (driver: CST.0.2.0)
> 16: 2011-12-04 16:42:18 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\TD_00822.EDF -> samples: 1226 (driver: SPC.0.2.0)
> 17: 2012-02-22 07:09:24 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\castaway\10M100491_20120222_070924_cast_away.csv -> samples: 80 (driver: CST.0.2.0)
> 18: 2012-02-22 07:11:49 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\monitor\FILE12_valeport.000 -> samples: 99 (driver: VAL.MIDAS.0.2.0)
> 19: 2012-03-22 03:01:01 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\TD_00831.edf -> samples: 1226 (driver: SPC.0.2.0)
> 20: 2012-05-05 11:19:50 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE13.000 -> samples: 2791 (driver: VAL.MIDAS.0.2.0)
> 21: 2012-05-05 11:19:50 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE13_valeport.000 -> samples: 2791 (driver: VAL.MIDAS.0.2.0)
> 22: 2012-05-05 13:50:14 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE14.000 -> samples: 1718 (driver: VAL.MIDAS.0.2.0)
> 23: 2012-05-05 14:11:06 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE15.000 -> samples: 837 (driver: VAL.MIDAS.0.2.0)
> 24: 2012-05-05 14:21:58 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE16.000 -> samples: 1231 (driver: VAL.MIDAS.0.2.0)
> 25: 2012-05-05 14:33:12 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE17.000 -> samples: 886 (driver: VAL.MIDAS.0.2.0)
> 26: 2012-05-05 19:52:14 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE18.000 -> samples: 512 (driver: VAL.MIDAS.0.2.0)
> 27: 2012-05-06 16:21:51 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\turo\FK001_XBT001_may6.nc -> samples: 1358 (driver: TUR.0.2.0)
> 28: 2012-05-10 11:08:59 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE1.000 -> samples: 1693 (driver: VAL.MIDAS.0.2.0)
> 29: 2012-05-11 06:29:14 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE4.000 -> samples: 7046 (driver: VAL.MIDAS.0.2.0)
> 30: 2012-05-12 06:34:14 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE5.000 -> samples: 2766 (driver: VAL.MIDAS.0.2.0)
> 31: 2012-05-12 14:23:18 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE6.000 -> samples: 2844 (driver: VAL.MIDAS.0.2.0)
> 32: 2012-05-13 07:33:06 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE7.000 -> samples: 5953 (driver: VAL.MIDAS.0.2.0)
> 33: 2012-05-13 16:25:46 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE9.000 -> samples: 7135 (driver: VAL.MIDAS.0.2.0)
> 34: 2012-05-13 16:41:41 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird\FK001_CTD02.cnv -> samples: 39854 (driver: SEB.0.2.0)
> 35: 2012-05-15 06:11:33 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\midas\FILE10.000 -> samples: 4515 (driver: VAL.MIDAS.0.2.0)
> 36: 2012-08-27 16:12:57 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\C4_00003.EDF -> samples: 14175 (driver: SPC.0.2.0)
> 37: 2012-10-21 01:39:22 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\C3_00172.EDF -> samples: 1465 (driver: SPC.0.2.0)
> 38: 2013-06-05 08:10:41 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\valeport\mini_svp\V000056.TXT -> samples: 623 (driver: VAL.MiniSVP.0.2.0)
> 39: 2013-06-14 18:52:11 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\idronaut\Campagna_2013001.TXT -> samples: 264 (driver: IDR.0.2.0)
> 40: 2013-07-11 13:01:09 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\seabird\2013_192_124923test.cnv -> samples: 1520 (driver: SEB.0.2.0)
> 41: 2013-07-30 08:57:31 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast1.csv -> samples: 63 (driver: DGS.DIGIBAR_S.0.2.0)
> 42: 2013-07-30 09:26:02 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast2.csv -> samples: 48 (driver: DGS.DIGIBAR_S.0.2.0)
> 43: 2013-07-30 09:52:54 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\digibar\s\7-30cast3.csv -> samples: 63 (driver: DGS.DIGIBAR_S.0.2.0)
> 44: 2014-11-04 06:04:22 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\saiv\S2.5_FG_SD008_20141104_0610.txt -> samples: 635 (driver: SAI.0.2.0)
> 45: 2015-08-01 01:46:18 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\S1_00008.EDF -> samples: 1650 (driver: SPC.0.2.0)
> 46: 2015-08-01 02:00:15 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\C3_00010.EDF -> samples: 9982 (driver: SPC.0.2.0)
> 47: 2015-08-01 02:13:33 Z:\_py\__hyo_dev\hyo_ssp\hydroffice\ssp\samples\sippican\langseth\C3_00011.EDF -> samples: 7712 (driver: SPC.0.2.0)
Content source: hydroffice/hyo_ssp
Similar notebooks: